.hero-spacer {
    width: 100%;
    max-width: 400px;
    height: 180px;
    display: block;
    background: transparent;
    pointer-events: none;
}

/* ====== VARIABLES ====== */
:root {
    --primary-red: #FF3B30;
    --primary-dark: #D12B20;
    --secondary-orange: #FF9500;
    --accent-blue: #007AFF;
    --dark: #1C1C1E;
    --dark-gray: #2C2C2E;
    --medium-gray: #48484A;
    --light-gray: #8E8E93;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--secondary-orange));
    --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark-gray));
    --shadow-primary: 0 20px 60px rgba(255, 59, 48, 0.3);
    --shadow-dark: 0 20px 60px rgba(28, 28, 30, 0.2);
}

/* ====== RESET ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== HEADER ====== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(28, 28, 30, 0.4);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

/* Hamburguesa y responsivo */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1200;
    background: #ff6b35 !important;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 0;
    color: #fff !important;
    font-size: 20px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    margin: 3px 0;
    background: #fff !important;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger i {
    color: #fff !important;
    font-size: 20px;
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100vw;
        height: auto;
        min-height: 220px;
        background: rgba(28,28,30,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 4rem 2rem 2rem 2rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
        transition: top 0.3s;
        z-index: 1100;
        display: none;
    }
    .nav.active {
        top: 0;
        display: flex;
    }
    .nav a {
        color: var(--white) !important;
        font-size: 1.3rem;
        text-shadow: none !important;
        text-align: center;
    }
    .hamburger {
        display: flex !important;
    }
    .header .container {
        padding: 0.7rem 4vw;
    }
}

@media (max-width: 430px) {
    .header .container {
        padding: 0.5rem 15px;
    }
    .logo h2 {
        font-size: 1.4rem;
    }
    .hamburger {
        width: 35px;
        height: 35px;
    }
    .hamburger i {
        font-size: 1.2rem;
    }
    .nav.active {
        padding-top: 80px;
        gap: 1.5rem;
    }
    .nav a {
        font-size: 1.1rem !important;
        padding: 0.5rem 0;
    }
    .btn-join {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}


.logo h2 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary-red);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--primary-red);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.btn-join {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease !important;
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 80px rgba(255, 59, 48, 0.4);
}

.btn-join::after {
    display: none !important;
}

/* ====== HERO ====== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('gim2.png') center center/cover no-repeat, var(--gradient-dark);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17,17,17,0);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}


/* HERO RESPONSIVO */
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1400px;
    gap: 0;
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .hero-content, .hero-spacer {
        min-height: 220px;
        width: 100%;
        padding: 0 2vw;
    }
}
@media (max-width: 430px) {
    .hero {
        padding: 90px 0 50px;
        min-height: 100vh;
    }
    .hero-content, .hero-spacer {
        min-height: 150px;
        padding: 0 20px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        text-align: center;
    }
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    .hero-stats .stat {
        text-align: center;
    }
    .hero-stats .stat h3 {
        font-size: 1.8rem;
    }
    .hero-stats .stat p {
        font-size: 0.9rem;
    }
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="gym-pattern" patternUnits="objectBoundingBox" width="0.1" height="0.1"><circle cx="25" cy="25" r="2" fill="%23FF3B30" opacity="0.1"/><rect x="70" y="70" width="15" height="15" fill="%23FF9500" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23gym-pattern)"/></svg>') center/cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 28, 30, 0.8), rgba(44, 44, 46, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-3d-container {
    position: relative;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 800px;
    height: 900px;
    background: rgba(17,17,17,0.0); /* transparente */
    border-radius: 40px;
    /* Sin box-shadow ni marcos */
}

.gym-image-3d {
    width: 700px;
    height: 850px;
    object-fit: contain;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 0 60px rgba(0,0,0,0.9));
    transform: translateZ(50px);
    /* Sin box-shadow en la imagen */
    filter: drop-shadow(0 0 60px rgba(255,255,255,0.35));
    clip-path: inset(15% 15% 15% 15% round 100px);
    position: relative;
    border-radius: 48px;
    position: relative;
}

.gym-image-3d::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    border-radius: 40px;
    background: radial-gradient(circle, rgba(255,255,255,0.45) 80%, transparent 100%);
    filter: blur(6px);
    pointer-events: none;
    border-radius: 100px;
    z-index: 20;
}


.depth-layer {
    position: absolute;
    width: 700px;
    height: 850px;
    border-radius: 40px;
    opacity: 0.22;
    background: #111;
}

.layer-1 {
    background: #111;
    transform: translateZ(-20px) translateX(-10px) translateY(10px);
    animation: float-1 4s ease-in-out infinite;
}

.layer-2 {
    background: #111;
    transform: translateZ(-40px) translateX(15px) translateY(-5px);
    animation: float-2 5s ease-in-out infinite reverse;
}

.layer-3 {
    background: #111;
    transform: translateZ(-60px) translateX(-5px) translateY(15px);
    animation: float-3 6s ease-in-out infinite;
}

.glow-effect {
    position: absolute;
    width: 800px;
    height: 900px;
    background: radial-gradient(circle, rgba(0,0,0,0.95) 0%, transparent 80%);
    border-radius: 50%;
    transform: translateZ(-10px);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateZ(-20px) translateX(-10px) translateY(10px); }
    50% { transform: translateZ(-25px) translateX(-15px) translateY(15px); }
}

@keyframes float-2 {
    0%, 100% { transform: translateZ(-40px) translateX(15px) translateY(-5px); }
    50% { transform: translateZ(-35px) translateX(20px) translateY(-10px); }
}

@keyframes float-3 {
    0%, 100% { transform: translateZ(-60px) translateX(-5px) translateY(15px); }
    50% { transform: translateZ(-55px) translateX(-10px) translateY(20px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: translateZ(-10px) scale(1); }
    50% { opacity: 0.6; transform: translateZ(-10px) scale(1.1); }
}

@keyframes pulse-border {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.8;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 59, 48, 0.2);
    color: var(--primary-red);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 59, 48, 0.3);
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -2px;
}

.accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 100px rgba(255, 59, 48, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ====== FLOATING ICONS ====== */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.icon-float {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-red);
    opacity: 0.1;
    animation: float-gym 20s infinite linear;
}

.icon-float:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.icon-float:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.icon-float:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.icon-float:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: -15s;
    animation-duration: 28s;
}

.icon-float:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: -20s;
    animation-duration: 26s;
}

@keyframes float-gym {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.25;
    }
}

/* ====== SECTIONS ====== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 59, 48, 0.1);
    color: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 900;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ====== PROGRAMS ====== */
.programs {
    padding: 100px 0;
    background: var(--off-white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-dark);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 100px rgba(28, 28, 30, 0.15);
}

.program-card.featured {
    background: var(--gradient-dark);
    color: var(--white);
    transform: scale(1.05);
}

.program-card.featured::before {
    transform: scaleX(1);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.program-icon i {
    font-size: 2rem;
    color: var(--white);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.program-card p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.program-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.program-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.program-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--light-gray);
    font-weight: 500;
}

.program-card.featured .program-details span {
    color: rgba(255, 255, 255, 0.7);
}

.btn-program {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-program:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-primary);
}

/* ====== TRAINERS ====== */
.trainers {
    padding: 100px 0;
    background: var(--white);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.trainer-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: all 0.4s ease;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 120px rgba(28, 28, 30, 0.15);
}

.trainer-image {
    position: relative;
    height: 300px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    background: var(--gradient-dark);
}

.social-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;



    position: absolute;
    font-size: 3.6rem;
    color: rgba(255,255,255,0.7);
    opacity: 0.95;
    filter: none;
    text-shadow: 0 4px 24px rgba(0,0,0,0.45), 0 0 8px #ff9500;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: scale(1.1);
}

.trainer-info {
    padding: 2rem;
}

.trainer-info h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.specialty {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: block;
}

.trainer-info p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.certifications {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.certifications span {
    background: rgba(255, 59, 48, 0.1);
    color: var(--primary-red);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ====== MEMBERSHIP ====== */
.membership {
    padding: 100px 0;
    background: var(--off-white);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.membership-card {
    background: var(--white);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow-dark);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 120px rgba(28, 28, 30, 0.15);
}

.membership-card.popular {
    background: var(--gradient-dark);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 30px 100px rgba(255, 59, 48, 0.2);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 700;
}

.amount {
    font-size: 4rem;
    color: var(--primary-red);
    font-weight: 900;
}

.period {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.membership-card.popular .period {
    color: rgba(255, 255, 255, 0.7);
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-weight: 500;
}

.features li i {
    width: 20px;
    text-align: center;
}

.features li.unavailable {
    opacity: 0.5;
}

.features .fa-check {
    color: #34C759;
}

.features .fa-times {
    color: #FF3B30;
}

.btn-membership {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.btn-membership:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* ====== CONTACT ====== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.contact-info > p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--medium-gray);
    line-height: 1.5;
}

.contact-form {
    background: var(--gradient-dark);
    padding: 3rem;
    border-radius: 25px;
    color: var(--white);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* ====== FOOTER ====== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.footer-brand span {
    color: var(--primary-red);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer .social-links {
    display: flex;
    gap: 1rem;
}

.footer .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-programs h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-links a,
.footer-programs a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-programs a:hover {
    color: var(--primary-red);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-red);
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #FF6B35;
    font-weight: 500;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero .container {
        gap: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .programs-grid,
    .trainers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .image-3d-container {
        width: 500px;
        height: 500px;
    }
    
    .gym-image-3d {
        width: 380px;
        height: 450px;
    }
    
    .depth-layer {
        width: 350px;
        height: 420px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .image-3d-container {
        width: 350px;
        height: 400px;
    }
    
    .gym-image-3d {
        width: 280px;
        height: 350px;
    }
    
    .gym-image-3d:hover {
        transform: translateZ(30px) rotateY(10deg);
    }
    
    .depth-layer {
        width: 250px;
        height: 320px;
    }
    
    .glow-effect {
        width: 300px;
        height: 300px;
    }
    
    .hero .container {
        gap: 2rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .programs-grid,
    .trainers-grid,
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-icons {
        display: none;
    }
}

/* ====== TRANSFORMATIONS ====== */
.transformations {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1c1c1e 0%, #2d2d30 100%);
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.transformation-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.image-side {
    position: relative;
    text-align: center;
}

.image-side .label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-side .image-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.image-side .image-placeholder i {
    font-size: 3rem;
    color: #ff6b35;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 1.5rem;
}

.transformation-info {
    padding: 2rem;
}

.transformation-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.transformation-info .stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transformation-info .stat {
    display: flex;
    flex-direction: column;
}

.transformation-info .stat .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6b35;
}

.transformation-info .stat .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.transformation-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-style: italic;
}

/* ====== SCHEDULE ====== */
.schedule {
    padding: 5rem 0;
    background: #fff;
}

.schedule-wrapper {
    margin-top: 3rem;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.schedule-tabs {
    display: flex;
    background: #1c1c1e;
    overflow-x: auto;
    scrollbar-width: thin;
}

.schedule-tab {
    flex: 1;
    min-width: 120px;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.schedule-tab:hover {
    color: #fff;
    background: rgba(255, 107, 53, 0.1);
}

.schedule-tab.active {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.schedule-content {
    padding: 2rem;
}

.schedule-day {
    display: none;
}

.schedule-day.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.class-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.class-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.class-item .time {
    font-weight: 700;
    color: #1c1c1e;
    font-size: 1rem;
}

.class-details h4 {
    font-size: 1.1rem;
    color: #1c1c1e;
    margin-bottom: 0.3rem;
}

.class-details p {
    color: #666;
    font-size: 0.9rem;
}

.class-details i {
    color: #ff6b35;
    margin-right: 0.3rem;
}

.difficulty {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty.beginner {
    background: #d4edda;
    color: #155724;
}

.difficulty.intermediate {
    background: #fff3cd;
    color: #856404;
}

.difficulty.advanced {
    background: #f8d7da;
    color: #721c24;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #ff6b35;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.member-image .image-placeholder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ff8c61);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image .image-placeholder i {
    font-size: 2rem;
    color: #fff;
}

.member-info h4 {
    font-size: 1.2rem;
    color: #1c1c1e;
    margin-bottom: 0.3rem;
}

.member-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-content p {
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

/* ====== RESPONSIVE UPDATES ====== */
@media (max-width: 768px) {
    .transformations-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .divider {
        transform: rotate(90deg);
    }
    
    .schedule-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .schedule-tab {
        font-size: 0.8rem;
        padding: 1rem;
    }
    
    .class-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .class-item .time {
        font-size: 0.95rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 393px) {
    .transformation-info .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .schedule-tab {
        min-width: 100px;
        font-size: 0.75rem;
        padding: 0.8rem;
    }
}
