* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --dark-bg: #000;
    --light-bg: #1a1a1a;
    --text-dark: #fff;
    --text-light: #ccc;
    --transition: all 0.3s ease;
    --accent: #d4af37;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #000;
}

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

/* ============ NAVBAR ============ */
.navbar {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid var(--accent);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.1);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.logo-text:hover {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: rgba(212, 175, 55, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
}

.lang-btn {
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 6px 12px !important;
    border-radius: 5px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-btn:hover {
    color: var(--accent) !important;
    background-color: rgba(212, 175, 55, 0.1) !important;
}

.lang-btn.active {
    background-color: var(--accent) !important;
    color: #000 !important;
    font-weight: 900;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============ HERO SECTION ============ */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.6) 100%), 
                url('../images/lsf\ background\ 2.png') center/cover no-repeat;
    color: white;
    padding: 120px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--accent);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #ccc;
}

/* ============ BRAND INTRO SECTION ============ */
.brand-intro {
    padding: 100px 20px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    text-align: center;
    border-bottom: 3px solid var(--accent);
}

.brand-intro h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #f0d96f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    margin-bottom: 30px;
}

.brand-description {
    font-size: 1.2rem;
    line-height: 2;
    color: #e0e0e0;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

/* ============ BARBERSHOP SECTION ============ */
.barbershop-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    border-bottom: 3px solid var(--accent);
}

.barbershop-section .feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.barbershop-section .feature-image {
    flex: 1;
}

.barbershop-section .feature-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid var(--accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.barbershop-section .feature-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.barbershop-section .feature-text {
    flex: 1;
}

.barbershop-section .feature-text h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f0d96f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.barbershop-section .feature-text h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.barbershop-section .feature-text p {
    font-size: 1.15rem;
    line-height: 2;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .barbershop-section {
        padding: 80px 20px;
    }

    .barbershop-section .feature-row {
        flex-direction: column;
        gap: 30px;
    }
}

/* ============ GYM FACILITIES SECTION ============ */
.gym-facilities {
    padding: 120px 20px;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #000 100%);
    border-bottom: 3px solid var(--accent);
}

.gym-facilities h2 {
    text-align: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #f0d96f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    margin-bottom: 15px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.facility-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--accent);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.facility-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 60px rgba(212, 175, 55, 0.5),
        0 0 50px rgba(212, 175, 55, 0.4);
    border-color: #f0d96f;
}

.facility-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.facility-card h3 {
    padding: 25px 20px 10px;
    font-size: 1.6rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
}

.facility-card p {
    padding: 0 20px 25px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
}

/* ============ LIFESTYLE SECTION (Merch & Competitions) ============ */
.lifestyle-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    border-bottom: 3px solid var(--accent);
}

.lifestyle-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.lifestyle-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-radius: 25px;
    padding: 50px;
    border: 3px solid var(--accent);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.lifestyle-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.4),
        0 0 50px rgba(212, 175, 55, 0.3);
    border-color: #f0d96f;
}

.lifestyle-card.reverse {
    flex-direction: row-reverse;
}

.lifestyle-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--accent);
}

.lifestyle-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.lifestyle-card:hover .lifestyle-image img {
    transform: scale(1.05);
}

.lifestyle-content {
    flex: 1;
}

.lifestyle-content h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f0d96f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.lifestyle-content p {
    font-size: 1.15rem;
    line-height: 2;
    color: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-intro {
        padding: 80px 20px;
    }

    .brand-intro h2 {
        font-size: 2.2rem;
    }

    .brand-description {
        font-size: 1rem;
    }

    .barbershop-section {
        padding: 80px 20px;
    }

    .gym-facilities {
        padding: 80px 20px;
    }

    .gym-facilities h2 {
        font-size: 2.2rem;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lifestyle-section {
        padding: 80px 20px;
    }

    .lifestyle-grid {
        gap: 50px;
    }

    .lifestyle-card {
        flex-direction: column !important;
        padding: 30px;
        gap: 30px;
    }

    .lifestyle-content h2 {
        font-size: 2rem;
    }

    .lifestyle-content p {
        font-size: 1rem;
    }
}

.schedule-badge {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
    margin: 1rem 0 !important;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent);
    border-radius: 50px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

.cta-button {
    background-color: var(--primary-color);
    color: #000;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #f0d96f;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

/* ============ ABOUT US SECTION ============ */
.about-us {
    padding: 100px 20px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-top: 3px solid var(--accent);
}

.about-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro {
    text-align: left;
    margin-bottom: 3rem;
}

.about-intro h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-intro p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-text p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============ LOCATION/MAP SECTION ============ */
.location-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #000 100%);
    border-top: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.location-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f0d96f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.map-container {
    margin: 60px auto;
    max-width: 1200px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 0 4px var(--accent),
        inset 0 0 30px rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.map-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent), #f0d96f, var(--accent));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(212, 175, 55, 0.4),
        0 0 0 4px #f0d96f,
        inset 0 0 40px rgba(212, 175, 55, 0.2);
}

.map-container:hover::before {
    opacity: 0.3;
}

.map-container iframe {
    display: block;
    filter: brightness(0.85) contrast(1.15) saturate(0.9);
    transition: all 0.4s ease;
}

.map-container:hover iframe {
    filter: brightness(1) contrast(1.2) saturate(1.1);
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.info-item {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--accent);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-item:hover::before {
    opacity: 1;
}

.info-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(212, 175, 55, 0.5),
        0 0 0 3px #f0d96f,
        inset 0 0 40px rgba(212, 175, 55, 0.15);
    border-color: #f0d96f;
}

.info-item h3 {
    background: linear-gradient(135deg, #d4af37 0%, #f0d96f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.info-item p {
    color: #e0e0e0;
    font-size: 1.15rem;
    line-height: 2;
    font-weight: 400;
    position: relative;
}

.info-item a {
    font-weight: 700;
    transition: all 0.3s ease;
    color: var(--accent);
}

.info-item a:hover {
    color: #f0d96f !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .location-section {
        padding: 80px 20px;
    }

    .location-section h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .map-container {
        margin: 40px auto;
        border-radius: 20px;
    }

    .map-container iframe {
        height: 350px;
    }

    .location-info {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 50px;
    }

    .info-item {
        padding: 35px 25px;
    }

    .info-item h3 {
        font-size: 1.6rem;
    }

    .info-item p {
        font-size: 1rem;
    }
}

/* ============ STATS SECTION ============ */

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    text-align: center;
    border-top: 3px solid var(--accent);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: #f0d96f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 78, 137, 0.3);
}

.btn-secondary:hover {
    background-color: #003d6b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 78, 137, 0.5);
}

/* ============ FOOTER ============ */
footer {
    background: #000;
    color: white;
    padding: 2rem;
    text-align: center;
    border-top: 2px solid var(--accent);
}

footer p {
    margin: 0.5rem 0;
}

footer p:first-child {
    font-weight: 700;
    color: var(--accent);
}

footer p:last-child {
    opacity: 0.8;
    font-style: italic;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.instagram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.instagram-icon:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.facebook-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #1877F2;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.facebook-icon:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.5);
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-icon:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

/* ============ PAGE HEADER ============ */
.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%), 
                url('../images/lsf\ background\ 2.png') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    border-bottom: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.page-header p {
    font-size: 1.4rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    font-weight: 500;
    animation: fadeInUp 1s ease;
}

/* ============ MENU & MEMBERSHIP SECTION ============ */
.menu-membership-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #000 100%);
    position: relative;
}

.menu-membership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.menu-membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.menu-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.4),
        0 0 0 2px var(--accent),
        inset 0 0 30px rgba(212, 175, 55, 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.card-header h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #d4af37 0%, #f0d96f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.card-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.card-header p {
    font-size: 1.2rem;
    color: #ccc;
    font-style: italic;
    font-weight: 400;
    margin-top: 20px;
}

.card-image {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--accent);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    cursor: pointer;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-image::after {
    content: '🔍 Click to Enlarge';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
    border: 2px solid var(--accent);
}

.card-image:hover::before {
    opacity: 1;
}

.card-image:hover::after {
    opacity: 1;
}

/* ============ LIGHTBOX ============ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
    border: 3px solid var(--accent);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 60px;
    font-weight: bold;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.close-lightbox:hover {
    color: #f0d96f;
    transform: rotate(90deg) scale(1.2);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80%;
    }

    .close-lightbox {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    .card-image::after {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95);
}

.card-image:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

@media (max-width: 1200px) {
    .menu-membership-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 20px;
    }

    .page-header h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .menu-membership-section {
        padding: 80px 20px;
    }

    .menu-membership-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .menu-card {
        padding: 35px 25px;
    }

    .card-header h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .card-header p {
        font-size: 1rem;
    }
}

/* ============ FOUNDERS STORY SECTION ============ */
.founders-story-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #000 100%);
    position: relative;
}

.founders-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Founders Hero Section */
.founders-hero {
    max-width: 1200px;
    margin: 0 auto 100px;
    position: relative;
    z-index: 1;
}

.founders-hero-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 25px;
    overflow: hidden;
    border: 4px solid var(--accent);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.founders-hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(212, 175, 55, 0.5),
        0 0 50px rgba(212, 175, 55, 0.4);
}

.founders-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.founders-hero-image:hover img {
    transform: scale(1.05);
}

.founders-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.founders-hero-content h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #f0d96f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    margin-bottom: 30px;
}

.founders-hero-content p {
    font-size: 1.15rem;
    line-height: 2;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

/* CEO Cards Grid */
.ceo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1400px) {
    .ceo-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
        gap: 50px;
    }
}

@media (max-width: 1200px) {
    .ceo-cards-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .ceo-cards-grid {
        gap: 45px;
    }
}

.ceo-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 25px;
    overflow: hidden;
    border: 3px solid var(--accent);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.ceo-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.5),
        0 0 50px rgba(212, 175, 55, 0.4);
    border-color: #f0d96f;
}

.ceo-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 450px;
    flex-shrink: 0;
    border-radius: 25px 25px 0 0;
}

.ceo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

.ceo-card:hover .ceo-image-wrapper img {
    transform: scale(1.08);
    filter: brightness(1);
}

.ceo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #f0d96f 100%);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
    white-space: nowrap;
    z-index: 2;
}

.ceo-info {
    padding: 40px 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ceo-info h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #d4af37 0%, #f0d96f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.ceo-title {
    color: var(--accent);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.ceo-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.ceo-bio {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.ceo-philosophy {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin: 25px 0;
    color: #e0e0e0;
    font-size: 0.98rem;
    line-height: 1.7;
    border-radius: 5px;
    text-align: left;
}

.ceo-philosophy strong {
    color: var(--accent);
    font-size: 1.08rem;
    display: block;
    margin-bottom: 10px;
}

.ceo-specialties {
    margin-top: auto;
    padding-top: 10px;
}

.ceo-specialties h4 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.ceo-specialties ul {
    list-style: none;
    padding: 0;
}

.ceo-specialties li {
    color: #d0d0d0;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.ceo-specialties li:last-child {
    border-bottom: none;
}

.ceo-specialties li:hover {
    color: var(--accent);
    padding-left: 10px;
}

/* Additional Coaches Team Section */
.coaches-team-section {
    margin: 100px 0 80px;
    position: relative;
    z-index: 1;
}

.section-heading {
    text-align: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #f0d96f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    margin-bottom: 15px;
}

.section-subtitle-coaches {
    text-align: center;
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 60px;
    font-style: italic;
}

.coaches-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .coaches-grid-extended {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
        gap: 50px;
    }
}

@media (max-width: 1200px) {
    .coaches-grid-extended {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .coaches-grid-extended {
        gap: 45px;
    }
}

.coach-card-extended {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 25px;
    overflow: hidden;
    border: 3px solid var(--accent);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.coach-card-extended:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.5),
        0 0 50px rgba(212, 175, 55, 0.4);
    border-color: #f0d96f;
}

.coach-image-wrapper-extended {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 450px;
    flex-shrink: 0;
}

.coach-image-wrapper-extended img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

.coach-card-extended:hover .coach-image-wrapper-extended img {
    transform: scale(1.08);
    filter: brightness(1);
}

.coach-badge-extended {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #f0d96f 100%);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
    z-index: 2;
}

.coach-badge-extended.junior {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.5);
}

.experience-badge {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.coach-info-extended {
    padding: 40px 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coach-info-extended h3 {
    font-size: 2.1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f0d96f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.coach-title-extended {
    color: var(--accent);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.coach-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid var(--accent);
    padding: 15px 25px;
    border-radius: 15px;
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.coach-highlight.junior-highlight {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 153, 255, 0.1) 100%);
    border-color: #00d4ff;
    color: #00d4ff;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.coach-bio-extended {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.coach-specialties-extended {
    margin-top: auto;
    padding-top: 10px;
}

.coach-specialties-extended h4 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.coach-specialties-extended ul {
    list-style: none;
    padding: 0;
}

.coach-specialties-extended li {
    color: #d0d0d0;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.coach-specialties-extended li:last-child {
    border-bottom: none;
}

.coach-specialties-extended li:hover {
    color: var(--accent);
    padding-left: 10px;
}

/* Mission Statement */
.mission-statement {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 60px 50px;
    border-radius: 25px;
    border: 3px solid var(--accent);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.mission-statement h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f0d96f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    margin-bottom: 30px;
}

.mission-statement p {
    color: #e0e0e0;
    font-size: 1.15rem;
    line-height: 2;
    text-align: justify;
}

/* Responsive */
@media (max-width: 1200px) {
    .ceo-cards-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .founders-story-section {
        padding: 80px 20px;
    }

    .founders-hero {
        margin-bottom: 60px;
    }

    .founders-hero-image {
        margin-bottom: 30px;
    }

    .founders-hero-content h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .founders-hero-content p {
        font-size: 1rem;
    }

    .ceo-cards-grid {
        gap: 40px;
    }

    .ceo-image-wrapper img {
        height: 300px;
    }

    .ceo-info {
        padding: 30px 25px;
    }

    .ceo-info h3 {
        font-size: 2rem;
    }

    .ceo-title {
        font-size: 1.1rem;
    }

    .ceo-stats {
        flex-direction: column;
        gap: 10px;
    }

    .mission-statement {
        padding: 40px 30px;
    }

    .mission-statement h2 {
        font-size: 2rem;
    }

    .mission-statement p {
        font-size: 1rem;
    }
}

/* ============ CONSTRUCTION PAGE (SPLITS) ============ */
.construction-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.construction-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    animation: slideIn 0.8s ease;
    border-top: 4px solid var(--accent);
}

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

.construction-icon {
    font-size: 100px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.construction-container h1 {
    color: var(--accent);
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    color: #000;
    font-size: 1.3em;
    margin-bottom: 30px;
    font-weight: bold;
}

.funny-message {
    color: #555;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.reasons {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
    display: inline-block;
    border-left: 4px solid var(--accent);
}

.reasons h3 {
    color: var(--accent);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.reasons ul {
    list-style: none;
    color: #555;
}

.reasons li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.reasons li:last-child {
    border-bottom: none;
}

.reasons li:before {
    content: "💪 ";
    margin-right: 10px;
}

.construction-container .cta-button {
    background: var(--accent);
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1em;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.construction-container .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
    background: #f0d96f;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, #f0d96f 100%);
    width: 35%;
    animation: fillBar 1.5s ease-in-out infinite;
}

@keyframes fillBar {
    0%, 100% {
        width: 35%;
    }
    50% {
        width: 65%;
    }
}

.progress-text {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.back-link {
    margin-top: 30px;
    color: var(--accent);
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
    font-weight: 600;
}

.back-link:hover {
    color: #f0d96f;
    text-decoration: underline;
}

/* ============ RESPONSIVE - COMPREHENSIVE BREAKPOINTS ============ */

/* Large Desktop (1400px+) - Default styles already set above */

/* Medium Desktop (1200px - 1400px) */
@media (max-width: 1400px) {
    .ceo-image-wrapper,
    .coach-image-wrapper-extended {
        height: 420px;
    }
    
    .ceo-info h3,
    .coach-info-extended h3 {
        font-size: 2.1rem;
    }
}

/* Small Desktop / Large Tablet (992px - 1200px) */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .brand-intro h2,
    .gym-facilities h2,
    .location-section h2 {
        font-size: 2.8rem;
    }
    
    .ceo-image-wrapper,
    .coach-image-wrapper-extended {
        height: 400px;
    }
    
    .ceo-info h3,
    .coach-info-extended h3 {
        font-size: 2rem;
    }
    
    .ceo-info,
    .coach-info-extended {
        padding: 35px 30px;
    }
}

/* Tablet Portrait (768px - 992px) */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .brand-intro h2,
    .gym-facilities h2,
    .location-section h2 {
        font-size: 2.5rem;
    }
    
    .ceo-image-wrapper,
    .coach-image-wrapper-extended {
        height: 380px;
    }
    
    .ceo-info h3,
    .coach-info-extended h3 {
        font-size: 1.95rem;
    }
    
    .lifestyle-card {
        flex-direction: column !important;
        padding: 40px;
        gap: 40px;
    }
}

/* Mobile Landscape / Small Tablet (768px and below) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

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

    .nav-links a {
        padding: 1rem 0;
        border-radius: 0;
        width: 100%;
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        padding: 80px 20px;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 1.1rem;
    }
    
    .brand-intro {
        padding: 80px 20px;
    }

    .brand-intro h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .brand-description {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .barbershop-section {
        padding: 80px 20px;
    }

    .gym-facilities {
        padding: 80px 20px;
    }

    .gym-facilities h2 {
        font-size: 2.2rem;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lifestyle-section {
        padding: 80px 20px;
    }

    .lifestyle-grid {
        gap: 50px;
    }

    .lifestyle-card {
        flex-direction: column !important;
        padding: 35px 25px;
        gap: 30px;
    }

    .lifestyle-content h2 {
        font-size: 2rem;
    }

    .lifestyle-content p {
        font-size: 1.05rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    /* CEO and Coaches Cards */
    .ceo-cards-grid,
    .coaches-grid-extended {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ceo-image-wrapper,
    .coach-image-wrapper-extended {
        height: 380px;
    }

    .ceo-info,
    .coach-info-extended {
        padding: 35px 28px;
    }

    .ceo-info h3,
    .coach-info-extended h3 {
        font-size: 2rem;
    }

    .ceo-title,
    .coach-title-extended {
        font-size: 1.1rem;
    }

    .ceo-stats {
        gap: 12px;
    }
    
    .stat-item {
        text-align: center;
        font-size: 0.92rem;
    }
    
    .ceo-bio,
    .coach-bio-extended {
        font-size: 1rem;
        line-height: 1.75;
    }
    
    .ceo-philosophy {
        padding: 18px;
        font-size: 0.98rem;
    }
    
    .coach-highlight {
        font-size: 1.02rem;
        padding: 14px 23px;
    }
    
    .founders-story-section {
        padding: 80px 20px;
    }

    .founders-hero {
        margin-bottom: 60px;
    }

    .founders-hero-content h2 {
        font-size: 2.2rem;
    }

    .founders-hero-content p {
        font-size: 1.05rem;
    }

    .mission-statement {
        padding: 45px 35px;
    }

    .mission-statement h2 {
        font-size: 2.1rem;
    }

    .mission-statement p {
        font-size: 1.05rem;
    }
    
    /* Language Switcher Mobile */
    .language-switcher {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        justify-content: center;
        width: 100%;
        padding: 1rem 0;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        margin-top: 10px;
    }
    
    .lang-btn {
        padding: 11px 22px !important;
        font-size: 1rem !important;
    }
    
    /* Section Subtitle */
    .section-subtitle {
        font-size: 1.05rem !important;
        margin-bottom: 2.5rem;
        padding: 0 15px;
    }
    
    /* Footer */
    .social-links {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    footer {
        padding: 2.5rem 1.5rem;
    }
    
    footer p {
        font-size: 0.95rem;
    }
    
    /* Location Section */
    .location-section {
        padding: 80px 20px;
    }

    .location-section h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .map-container {
        margin: 40px auto;
        border-radius: 20px;
    }

    .map-container iframe {
        height: 350px;
    }

    .location-info {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 50px;
    }

    .info-item {
        padding: 40px 30px;
    }

    .info-item h3 {
        font-size: 1.7rem;
    }

    .info-item p {
        font-size: 1.05rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 80px 20px;
    }

    .page-header h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .page-header p {
        font-size: 1.2rem;
    }
    
    /* Menu Section */
    .menu-membership-section {
        padding: 80px 20px;
    }

    .menu-membership-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .menu-card {
        padding: 40px 30px;
    }

    .card-header h2 {
        font-size: 2.3rem;
        letter-spacing: 2px;
    }

    .card-header p {
        font-size: 1.05rem;
    }
}

/* Mobile Portrait (481px - 600px) */
@media (max-width: 600px) {
    .hero {
        padding: 70px 20px;
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.05rem;
    }
    
    .brand-intro h2,
    .gym-facilities h2,
    .location-section h2 {
        font-size: 2rem;
    }
    
    .ceo-image-wrapper,
    .coach-image-wrapper-extended {
        height: 350px;
    }
    
    .ceo-info h3,
    .coach-info-extended h3 {
        font-size: 1.85rem;
    }
    
    .ceo-info,
    .coach-info-extended {
        padding: 32px 25px;
    }
    
    .lifestyle-card {
        padding: 30px 20px;
    }
    
    .facility-card h3 {
        font-size: 1.5rem;
    }
}

/* Extra Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .brand-intro {
        padding: 60px 15px;
    }
    
    .brand-intro h2,
    .gym-facilities h2,
    .location-section h2,
    .section-heading {
        font-size: 1.8rem !important;
        letter-spacing: 1px;
    }
    
    .brand-description {
        font-size: 0.98rem;
    }
    
    .page-header {
        padding: 60px 15px;
    }
    
    .page-header h1 {
        font-size: 2rem !important;
        letter-spacing: 1px;
    }
    
    .page-header p {
        font-size: 1.05rem !important;
    }
    
    .close-lightbox {
        font-size: 45px !important;
        width: 55px;
        height: 55px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.85);
        border-radius: 50%;
        top: 10px !important;
        right: 10px !important;
    }
    
    .menu-card,
    .facility-card {
        padding: 28px 18px !important;
    }
    
    /* CEO and Coaches - Extra Small */
    .ceo-card,
    .coach-card-extended {
        border-width: 2px;
    }
    
    .ceo-image-wrapper,
    .coach-image-wrapper-extended {
        height: 320px !important;
    }
    
    .ceo-badge,
    .coach-badge-extended,
    .experience-badge {
        font-size: 0.72rem !important;
        padding: 7px 14px !important;
    }
    
    .experience-badge {
        top: 60px;
    }
    
    .ceo-info h3,
    .coach-info-extended h3 {
        font-size: 1.7rem !important;
        letter-spacing: 1px;
    }
    
    .ceo-title,
    .coach-title-extended {
        font-size: 1rem !important;
    }
    
    .ceo-info,
    .coach-info-extended {
        padding: 28px 22px !important;
    }
    
    .ceo-stats {
        gap: 10px;
    }
    
    .stat-item {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .ceo-bio,
    .coach-bio-extended {
        font-size: 0.95rem !important;
        line-height: 1.7;
    }
    
    .ceo-philosophy {
        padding: 15px !important;
        font-size: 0.93rem !important;
    }
    
    .ceo-philosophy strong {
        font-size: 1rem !important;
    }
    
    .ceo-specialties h4,
    .coach-specialties-extended h4 {
        font-size: 1.1rem !important;
    }
    
    .ceo-specialties li,
    .coach-specialties-extended li {
        font-size: 0.95rem !important;
        padding: 8px 0;
    }
    
    .coach-highlight {
        font-size: 0.95rem !important;
        padding: 12px 18px !important;
    }
    
    .mission-statement {
        padding: 35px 25px;
    }
    
    .mission-statement h2 {
        font-size: 1.9rem;
    }
    
    .mission-statement p {
        font-size: 1rem;
    }
    
    .info-item {
        padding: 35px 25px !important;
    }
    
    .info-item h3 {
        font-size: 1.5rem !important;
    }
    
    .info-item p {
        font-size: 1rem !important;
    }
    
    .btn {
        padding: 12px 28px !important;
        font-size: 0.9rem !important;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .lifestyle-content h2 {
        font-size: 1.8rem;
    }
    
    .lifestyle-content p {
        font-size: 1rem;
    }
    
    .card-header h2 {
        font-size: 2rem !important;
    }
    
    .founders-hero-content h2 {
        font-size: 2rem !important;
    }
    
    .founders-hero-content p {
        font-size: 1rem !important;
    }
}

/* Very Small Screens (320px and below) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.6rem !important;
    }
    
    .brand-intro h2,
    .gym-facilities h2,
    .location-section h2 {
        font-size: 1.6rem !important;
    }
    
    .ceo-image-wrapper,
    .coach-image-wrapper-extended {
        height: 280px !important;
    }
    
    .ceo-info h3,
    .coach-info-extended h3 {
        font-size: 1.5rem !important;
    }
    
    .ceo-info,
    .coach-info-extended {
        padding: 25px 18px !important;
    }
}