/* ============================================
   BE STRONG GYM - Complete Website Styles
   SEO Optimized | Responsive | Modern Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-dark: #D4A017;
    --black: #0a0a0a;
    --dark: #111111;
    --dark-light: #1a1a1a;
    --gray: #2a2a2a;
    --text-light: #cccccc;
    --white: #ffffff;
    --accent: #FF6B35;
    --success: #00C853;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #D4A017 50%, #FFD700 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: pulse-gold 1.5s ease-in-out infinite;
}

.loading-logo span {
    color: var(--white);
}

.loading-bar-container {
    width: 250px;
    height: 4px;
    background: var(--gray);
    border-radius: 2px;
    margin-top: 30px;
    overflow: hidden;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 2px;
    animation: loading-progress 2s ease-in-out forwards;
}

.loading-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes pulse-gold {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

@keyframes loading-progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-brand span {
    color: var(--white);
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 8px;
    padding: 8px 15px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.navbar-toggler {
    border: 2px solid var(--gold);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 215, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--black) !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--black) !important;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold) !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 30px;
    border: 2px solid var(--gold);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.85) 100%);
}

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

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-title span {
    color: var(--gold);
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-buttons .btn {
    margin: 0 10px 10px;
}

.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.hero-scroll i {
    font-size: 1.5rem;
    color: var(--gold);
}

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

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

/* ============================================
   SECTION STYLES
   ============================================ */
.section-padding {
    padding: 100px 0;
}

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

.section-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--gold);
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 20px auto;
    border-radius: 2px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-img-wrapper img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-img-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 15px 25px;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content h3 span {
    color: var(--gold);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-features li i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 30px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.service-card {
    background: var(--dark-light);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--black);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   TRAINERS SECTION
   ============================================ */
.trainer-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
}

.trainer-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.trainer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    transition: all 0.4s ease;
}

.trainer-card:hover .trainer-overlay {
    padding-bottom: 40px;
}

.trainer-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 5px;
}

.trainer-role {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.trainer-social {
    display: flex;
    gap: 10px;
}

.trainer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.trainer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 24px;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--gold);
}

/* Transformation Cards */
.transform-card {
    background: var(--dark-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--gray);
}

.transform-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.transform-images {
    display: flex;
    position: relative;
}

.transform-images img {
    width: 50%;
    height: 250px;
    object-fit: cover;
}

.transform-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 3px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.transform-info {
    padding: 25px;
    text-align: center;
}

.transform-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.transform-info p {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--gray);
    height: 100%;
}

.pricing-card.popular {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.pricing-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-price {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--gray);
}

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

.pricing-features li i {
    color: var(--gold);
    margin-right: 10px;
}

/* ============================================
   BMI CALCULATOR
   ============================================ */
.bmi-calculator {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--gray);
}

.bmi-input-group {
    margin-bottom: 25px;
}

.bmi-input-group label {
    display: block;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.bmi-input-group input,
.bmi-input-group select {
    width: 100%;
    padding: 15px 20px;
    background: var(--gray);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.bmi-input-group input:focus,
.bmi-input-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.bmi-result {
    background: var(--gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    display: none;
}

.bmi-result.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.bmi-value {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.bmi-category {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-top: 10px;
}

.bmi-bar {
    width: 100%;
    height: 20px;
    background: linear-gradient(to right, #3498db, #2ecc71, #f1c40f, #e74c3c, #c0392b);
    border-radius: 10px;
    margin-top: 20px;
    position: relative;
}

.bmi-indicator {
    position: absolute;
    top: -5px;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    transition: left 0.5s ease;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info-card {
    background: var(--dark-light);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--gray);
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--gray);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--gray);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    background: var(--dark);
}

.form-control::placeholder {
    color: #666;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--gray);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--dark-light);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--gray);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.testimonial-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
}

.testimonial-role {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 15px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
    border-top: 3px solid var(--gold);
}

.footer-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--white);
}

.footer-desc {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links li a {
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links li a i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 0.8rem;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--gold);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray);
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--gold);
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.gold-text { color: var(--gold); }
.bg-dark { background-color: var(--dark) !important; }
.bg-dark-light { background-color: var(--dark-light) !important; }
.bg-black { background-color: var(--black) !important; }

/* Counter Animation */
.counter {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: var(--shadow-gold);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--gold-light);
}

/* Schedule Table */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    background: var(--gold);
    color: var(--black);
    padding: 15px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray);
    color: var(--text-light);
}

.schedule-table tr:hover td {
    background: var(--dark-light);
    color: var(--white);
}

/* Equipment Gallery */
.equipment-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 24px;
}

.equipment-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.equipment-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
}

.equipment-info h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.equipment-info p {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 9997;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }

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

    .section-padding {
        padding: 60px 0;
    }

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

    .pricing-card.popular:hover {
        transform: scale(1) translateY(-10px);
    }

    .bmi-calculator,
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .transform-images img {
        height: 180px;
    }
}

@media (max-width: 575px) {
    .loading-logo {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .bmi-calculator,
    .contact-form {
        padding: 20px;
    }
}
