/* CSS Variables for Theme Colors */
:root {
    --lime-green: #32FF32;
    --lime-green-bright: #00FF00;
    --lime-green-dim: #28CC28;
    --black: #000000;
    --dark-grey: #1a1a1a;
    --medium-grey: #333333;
    --light-grey: #999999;
    --bright-white: #ffffff;
    --orange: #FF6B35;
    --purple: #8A2BE2;
    --gradient-primary: linear-gradient(135deg, var(--lime-green) 0%, var(--lime-green-bright) 100%);
    --gradient-dark: linear-gradient(135deg, var(--black) 0%, var(--dark-grey) 100%);
    --gradient-colorful: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 50%, #1a1a1a 100%);
    --box-shadow: 0 10px 30px rgba(50, 255, 50, 0.4);
    --box-shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--bright-white);
    background: var(--gradient-colorful);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: var(--lime-green);
    text-shadow: 0 0 20px rgba(50, 255, 50, 0.6);
}

h2 {
    font-size: 2.5rem;
    color: var(--lime-green);
    text-shadow: 0 0 15px rgba(50, 255, 50, 0.4);
}

h3 {
    font-size: 1.8rem;
    color: var(--bright-white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--black);
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(57, 255, 20, 0.4);
}

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

.btn-secondary:hover {
    background: var(--bright-white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--lime-green);
    border: 2px solid var(--lime-green);
}

.btn-outline:hover {
    background: var(--lime-green);
    color: var(--black);
    box-shadow: var(--box-shadow);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    left: 0;
    right: 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(57, 255, 20, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--lime-green);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--lime-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.5));
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--light-grey);
    font-weight: 300;
    animation: fadeIn 2s ease-out;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--lime-green);
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(50, 255, 50, 0.6); }
    to { text-shadow: 0 0 30px rgba(50, 255, 50, 0.9); }
}

@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: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--bright-white);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Programs Section */
.programs {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 30%, #1a1a1a 70%, #0d4d4d 100%);
    position: relative;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

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

.program-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(57, 255, 20, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transition: left 0.6s;
}

.program-card:hover::before {
    left: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--lime-green);
}

.program-icon {
    font-size: 3rem;
    color: var(--lime-green);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(50, 255, 50, 0.6);
}

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

.program-card p {
    color: var(--bright-white);
    line-height: 1.6;
    opacity: 0.9;
}

/* Gallery Section */
.gallery {
    background: var(--gradient-colorful);
    position: relative;
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(50, 255, 50, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--bright-white);
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    color: var(--lime-green);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Trainer Section */
.trainer {
    background: var(--gradient-colorful);
    position: relative;
}



.trainer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trainer-image {
    position: relative;
    text-align: center;
}

.trainer-img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.trainer-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.trainer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--black);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 700;
    box-shadow: var(--box-shadow);
}

.trainer-badge span {
    display: block;
    font-size: 1.5rem;
}

.trainer-badge small {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trainer-info {
    background: rgba(26, 26, 26, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(50, 255, 50, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.trainer-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.trainer-info .section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.trainer-name {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.trainer-credentials {
    margin-bottom: 2rem;
}

.trainer-bio {
    margin-bottom: 2rem;
}

.trainer-bio p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--bright-white);
    font-style: italic;
    opacity: 0.9;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    border-left: 4px solid var(--lime-green);
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateX(10px);
}

.credential-item i {
    color: var(--lime-green);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.trainer-specialties h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--lime-green);
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: rgba(50, 255, 50, 0.1);
    color: var(--lime-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--lime-green);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--lime-green);
    color: var(--black);
    transform: translateY(-2px);
}

/* Membership Section */
.membership {
    background: var(--gradient-colorful);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid rgba(57, 255, 20, 0.1);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

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

.pricing-card.featured {
    border-color: var(--lime-green);
    background: rgba(50, 255, 50, 0.05);
    transform: scale(1.05);
}

.pricing-card.premium {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(57, 255, 20, 0.05) 100%);
    border-color: var(--orange);
}

.pricing-card.special {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(57, 255, 20, 0.05) 100%);
    border-color: #ff1493;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bright-white);
}

.price {
    font-size: 3rem;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 0.5rem;
}

.period {
    color: var(--bright-white);
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--bright-white);
    opacity: 0.9;
}

.pricing-features i {
    color: var(--lime-green);
    font-size: 1rem;
}

/* Reviews Section */
.reviews {
    background: var(--gradient-colorful);
    position: relative;
}

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

.review-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(57, 255, 20, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.review-card.featured {
    border-color: var(--lime-green);
    background: rgba(50, 255, 50, 0.05);
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.review-stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--bright-white);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--bright-white);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--lime-green);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--gradient-colorful);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(50, 255, 50, 0.2);
}

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

.footer-section h4 {
    color: var(--lime-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

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

.footer-logo h3 {
    color: var(--lime-green);
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--lime-green);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item a {
    color: var(--bright-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--lime-green);
}

.map-link {
    color: var(--lime-green) !important;
    font-weight: 500;
    text-decoration: underline;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--bright-white);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

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

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--bright-white);
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.5);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(50, 255, 50, 0.1);
    color: var(--lime-green);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.3rem;
}

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

.developer-link {
    color: var(--lime-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: var(--lime-green-bright);
    text-shadow: 0 0 10px rgba(50, 255, 50, 0.5);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #25d366 0%, #20c05c 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

.whatsapp-btn i {
    font-size: 1.5rem;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.whatsapp-text {
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        margin: 1rem 0;
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-tagline {
        font-size: 1.2rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .trainer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 3rem;
    }
    
    .trainer-name {
        font-size: 2rem !important;
    }
    
    .trainer-img {
        height: 450px !important;
    }
    
    .trainer-info {
        padding: 2.5rem !important;
    }
    
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 2rem;
    }
    
    .program-card {
        padding: 2.5rem 2rem !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
        gap: 2rem;
    }
    
    .gallery-img {
        height: 280px !important;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .pricing-card {
        max-width: 100%;
        padding: 2.5rem 2rem !important;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .review-card {
        padding: 2.5rem 2rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        font-size: 1rem !important;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-link {
        min-width: 200px;
        justify-content: center;
    }
    
    .trainer-content {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
    }
    
    .trainer-img {
        height: 400px !important;
    }
    
    .trainer-info {
        padding: 2rem !important;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        padding: 0.8rem 1rem;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        padding: 2rem 1rem !important;
    }
    
    .nav-link {
        padding: 0.8rem 1rem !important;
        margin: 0.5rem 0 !important;
        border-radius: 8px;
        background: rgba(26, 26, 26, 0.5);
        text-align: center;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-logo-img {
        height: 80px !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .programs-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-img {
        height: 250px !important;
    }
    
    .footer-content {
        padding: 0 1rem !important;
        gap: 2rem !important;
    }
    
    .footer-section {
        margin-bottom: 1.5rem !important;
    }
    
    .contact-item {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 0.8rem !important;
    }
    
    .social-link {
        min-width: auto !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        justify-content: center !important;
    }
    
    .trainer-img {
        height: 350px !important;
    }
    
    .trainer-info {
        padding: 1.5rem !important;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    .trainer-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .price {
        font-size: 2.5rem !important;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.back-to-top i {
    color: var(--black);
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

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

    .nav-menu a {
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    /* Typography */
    h1, .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-tagline {
        font-size: 1.2rem;
    }

    /* Hero Section */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-logo-img {
        height: 80px;
    }

    /* Trainer Section */
    .trainer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .trainer-info .section-header {
        text-align: center;
    }

    .trainer-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: 1rem auto;
        display: inline-block;
    }

    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    /* Programs Grid */
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    /* Reviews Grid */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Floating Elements */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        padding: 0.8rem 1rem;
    }

    .whatsapp-text {
        display: none;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }
}

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

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

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

    .specialty-tags {
        justify-content: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

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

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green-dim);
}

/* Selection */
::selection {
    background: var(--neon-green);
    color: var(--black);
}

::-moz-selection {
    background: var(--neon-green);
    color: var(--black);
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--neon-green);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .back-to-top,
    .scroll-indicator {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-overlay {
        display: none;
    }
}
