/* ===== CSS VARIABLES ===== */
:root {
    --primary-orange: #FF8C00;
    --primary-yellow: #FFD700;
    --primary-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    --dark-bg: #1f1f1f;
    --darker-bg: #151515;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-light-gray: #999999;
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--primary-gradient);
    width: 0;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

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

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(31, 31, 31, 0.6) 100%);
    z-index: 1;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.15;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 150px 20px 100px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-gradient);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
    animation: pulse 3s infinite;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.6);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--darker-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
}

.stat-item h4 {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.5));
}

.stat-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.stat-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 0;
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.stat-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-gym-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid transparent;
    background-image:
        linear-gradient(var(--darker-bg), var(--darker-bg)),
        var(--primary-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.3);
    transition: var(--transition);
}

.about-gym-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.5);
}

/* ===== PROGRAMS SECTION ===== */
.programs {
    padding: 100px 0;
    background: var(--darker-bg);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px) scale(1.02);
    border: 2px solid var(--primary-orange);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.6);
    animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: translateY(-10px) scale(1.02);
    }
    25% {
        transform: translateY(-10px) scale(1.04);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
    75% {
        transform: translateY(-10px) scale(1.04);
    }
}

.program-card:hover .program-icon svg {
    animation: lift 0.6s ease-in-out infinite;
}

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

.program-card:hover .intensity-badge {
    animation: glow 1s infinite;
}

.program-card:hover .energy-bar.active {
    animation: energyPulse 0.5s ease-in-out infinite;
}

.program-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.program-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Intensity Badge */
.intensity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
}

/* Energy Bars */
.energy-bars {
    display: flex;
    gap: 5px;
    margin-top: 1.5rem;
    justify-content: center;
}

.energy-bar {
    width: 20px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.energy-bar.active {
    background: var(--primary-gradient);
    animation: energyPulse 1.5s ease-in-out infinite;
}

.energy-bar.active:nth-child(1) {
    animation-delay: 0s;
}

.energy-bar.active:nth-child(2) {
    animation-delay: 0.2s;
}

.energy-bar.active:nth-child(3) {
    animation-delay: 0.4s;
}

.energy-bar.active:nth-child(4) {
    animation-delay: 0.6s;
}

.energy-bar.active:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes energyPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleY(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Program Icon Animation */
.program-icon svg {
    animation: float 3s ease-in-out infinite;
}

/* ===== FACILITIES CAROUSEL SECTION ===== */
.facilities {
    padding: 100px 0 80px;
    background: var(--darker-bg);
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 0 10%;
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.carousel-item {
    position: relative;
    min-width: 500px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: center;
    cursor: grab;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-item:active {
    cursor: grabbing;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.6);
    z-index: 10;
}

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

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    transform: translateY(0);
    transition: var(--transition);
}

.carousel-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.carousel-overlay p {
    color: var(--text-white);
    font-size: 1rem;
}

/* Scroll Hint */
.carousel-scroll-hint {
    text-align: center;
    margin-top: 2rem;
    animation: pulse 2s infinite;
}

.carousel-scroll-hint p {
    color: var(--text-gray);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 100px 0;
    background: var(--dark-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--darker-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: scale(1.05);
    border: 2px solid var(--primary-orange);
}

.pricing-card.featured {
    border: 2px solid var(--primary-orange);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
    animation: glow 2s infinite;
}

.pricing-card:hover .amount {
    animation: pump 0.8s ease-in-out infinite;
}

@keyframes pump {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-orange);
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

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

.check {
    color: var(--primary-orange);
    margin-right: 10px;
    font-weight: bold;
}

.cross {
    color: #666;
    margin-right: 10px;
}

/* ===== CLASSIC PRE-BOOKING OFFER STYLES ===== */
.pricing-grid.special-offer {
    max-width: 450px;
    margin: 0 auto;
}

.pricing-card.classic-offer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-orange);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    padding: 2rem;
}

.pricing-card.classic-offer .badge {
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: -2rem -2rem 1.5rem;
    text-align: center;
}

.pricing-card.classic-offer h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-white);
}

.pricing-card.classic-offer .price {
    text-align: center;
    margin: 1.5rem 0 0.5rem;
}

.pricing-card.classic-offer .price .currency {
    font-size: 2rem;
    color: var(--primary-orange);
    font-weight: 700;
    vertical-align: top;
}

.pricing-card.classic-offer .price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
}

.price-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light-gray);
    margin-bottom: 1.5rem;
}

.pricing-card.classic-offer .features {
    margin: 1.5rem 0;
    list-style: none;
    padding: 0;
}

.pricing-card.classic-offer .features li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--text-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card.classic-offer .features li:last-child {
    border-bottom: none;
}

.savings-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--primary-orange);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.pricing-card.classic-offer .btn {
    width: 100%;
    padding: 14px 30px;
    margin-top: 1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: var(--darker-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-orange);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
}

.stars {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-card h4 {
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.role {
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-form {
    background: var(--darker-bg);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1.5rem;
    background: var(--dark-bg);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.contact-form button {
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-bg);
    padding: 50px 0 20px;
    border-top: 2px solid rgba(255, 140, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo .logo-image {
    height: 60px;
    width: auto;
}

.tagline {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--dark-bg);
    border-radius: 5px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
    }
    50% {
        box-shadow: 0 5px 40px rgba(255, 140, 0, 0.8);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        top: 10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-animation.animated {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(31, 31, 31, 0.98);
        width: 100%;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1.02);
    }

    .pricing-card.mega-offer {
        transform: scale(1);
    }

    .daily-cost .highlight {
        font-size: 1.5rem;
    }

    .btn-large {
        font-size: 1rem;
        padding: 15px 30px;
    }

    /* Carousel mobile adjustments */
    .carousel-item {
        min-width: 350px;
        height: 300px;
    }

    .carousel-track {
        padding: 0 5%;
    }

    .about-gym-image {
        height: 300px;
    }

    /* ===== MOBILE ANIMATION OPTIMIZATIONS ===== */

    /* Disable floating shapes on mobile - too heavy */
    .floating-shapes {
        display: none;
    }

    /* Simplify button animations */
    .btn-primary {
        animation: none;
    }

    /* Disable continuous bouncing/floating animations */
    .stat-icon {
        animation: none;
    }

    .program-icon svg {
        animation: none;
    }

    /* Simplify energy bar animations */
    .energy-bar.active {
        animation: none;
        opacity: 1;
    }

    /* Disable intensity badge pulsing */
    .intensity-badge {
        animation: none;
    }

    /* Simplify stat bar animation */
    .stat-bar::after {
        animation: none;
    }

    /* Remove parallax effects */
    .hero-content {
        transform: none !important;
        opacity: 1 !important;
    }

    /* Simplify hover effects for touch devices */
    .program-card:hover {
        animation: none;
        transform: translateY(-5px);
    }

    .program-card:hover .program-icon svg {
        animation: none;
    }

    .program-card:hover .intensity-badge {
        animation: none;
    }

    .program-card:hover .energy-bar.active {
        animation: none;
    }

    /* Simplify carousel effects on mobile */
    .carousel-item:hover {
        transform: scale(1.02);
    }

    /* Disable pricing pump animation */
    .pricing-card:hover .amount {
        animation: none;
    }

    .pricing-card.featured:hover {
        animation: none;
    }

    /* Reduce program card tilt effect */
    .program-card {
        transform: none !important;
    }

    /* Faster page loader on mobile */
    .loader-progress {
        animation: loading 1s ease-in-out forwards;
    }
}

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

    .btn {
        width: 100%;
    }

    .logo-image {
        height: 35px;
    }

    .footer-logo .logo-image {
        height: 45px;
    }

    /* Extra simplification for small screens */
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* ===== PERFORMANCE OPTIMIZATION FOR REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-shapes {
        display: none;
    }

    .btn-primary {
        animation: none;
    }

    .stat-icon,
    .program-icon svg,
    .energy-bar.active,
    .intensity-badge {
        animation: none;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .program-card:hover {
        transform: translateY(-5px);
        animation: none;
    }

    .program-card:hover .program-icon svg,
    .program-card:hover .intensity-badge,
    .program-card:hover .energy-bar.active {
        animation: none;
    }

    .pricing-card:hover .amount,
    .pricing-card.featured:hover {
        animation: none;
    }

    /* Simplify tap interactions */
    .program-card:active,
    .pricing-card:active,
    .carousel-item:active {
        transform: scale(0.98);
    }
}
