 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #ff3c00;
            --secondary: #1a1a1a;
            --accent: #ffd400;
            --dark: #0a0a0a;
            --light: #f5f5f5;
            --white: #ffffff;
            --gray: #666666;
        }

        body {
            font-family: 'Nunito Sans', sans-serif;
            color: var(--secondary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: 
                linear-gradient(135deg, rgba(255,60,0,0.92) 0%, rgba(26,26,26,0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231a1a1a" width="1200" height="800"/><g opacity="0.1" fill="white"><rect x="0" y="0" width="300" height="800" transform="skewX(-15)"/><rect x="600" y="0" width="200" height="800" transform="skewX(-15)"/><rect x="1000" y="0" width="200" height="800" transform="skewX(-15)"/></g></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            display: flex;
            align-items: center;
            color: var(--white);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 100px,
                    rgba(255,60,0,0.1) 100px,
                    rgba(255,60,0,0.1) 102px
                );
            pointer-events: none;
        }

        .diagonal-stripe {
            position: absolute;
            width: 200%;
            height: 300px;
            background: linear-gradient(45deg, transparent 40%, rgba(255,212,0,0.2) 50%, transparent 60%);
            top: 30%;
            left: -50%;
            animation: slideStripe 15s linear infinite;
        }

        @keyframes slideStripe {
            0% { transform: translateX(0); }
            100% { transform: translateX(100px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--accent);
            color: var(--dark);
            font-weight: 800;
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
            margin-bottom: 2rem;
            animation: slideInDown 1s ease-out;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(4rem, 10vw, 9rem);
            font-weight: 400;
            line-height: 0.9;
            margin-bottom: 2rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            animation: fadeInLeft 1.2s ease-out 0.2s backwards;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero h1 span {
            display: block;
            color: var(--accent);
            -webkit-text-stroke: 2px var(--accent);
            -webkit-text-fill-color: transparent;
        }

        .hero-tagline {
            font-size: clamp(1.3rem, 3vw, 2rem);
            margin-bottom: 3rem;
            font-weight: 300;
            max-width: 600px;
            animation: fadeInLeft 1.2s ease-out 0.4s backwards;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeInLeft 1.2s ease-out 0.6s backwards;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            padding: 1.5rem 3.5rem;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 10px 30px rgba(255,60,0,0.4);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-primary:hover {
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255,60,0,0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 3px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-5px);
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 25px rgba(37,211,102,0.5);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }

        .whatsapp-float:hover {
            transform: scale(1.15);
            animation: none;
        }

        .whatsapp-float i {
            font-size: 2rem;
            color: var(--white);
        }

        /* Section Styles */
        section {
            padding: 7rem 2rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-label {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: var(--primary);
            color: var(--white);
            font-weight: 800;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-top: 4rem;
        }

        .about-content {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--gray);
        }

        .about-content p {
            margin-bottom: 1.8rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-box {
            padding: 2rem;
            background: var(--dark);
            color: var(--white);
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-10px);
            background: var(--primary);
        }

        .stat-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-features {
            display: grid;
            gap: 1.5rem;
        }

        .feature-item {
            padding: 2rem;
            background: var(--light);
            border-left: 5px solid var(--primary);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(15px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .feature-item i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .feature-item h4 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        /* Programs Section */
        .programs {
            background: var(--light);
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .program-card {
            background: var(--white);
            padding: 3rem 2.5rem;
            clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            transition: left 0.4s ease;
            z-index: 0;
        }

        .program-card:hover::before {
            left: 0;
        }

        .program-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .program-card > * {
            position: relative;
            z-index: 1;
        }

        .program-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .program-card:hover .program-icon {
            color: var(--white);
            transform: scale(1.2);
        }

        .program-card h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            transition: color 0.4s ease;
        }

        .program-card:hover h4 {
            color: var(--white);
        }

        .program-card p {
            color: var(--gray);
            line-height: 1.7;
            transition: color 0.4s ease;
        }

        .program-card:hover p {
            color: rgba(255,255,255,0.95);
        }

        /* Membership Section */
        .membership {
            background: var(--dark);
            color: var(--white);
        }

        .membership .section-title {
            color: var(--white);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .plan-card {
            background: rgba(255,255,255,0.05);
            padding: 3rem 2.5rem;
            border: 2px solid rgba(255,255,255,0.1);
            clip-path: polygon(0 0, 100% 0, 100% 97%, 0% 100%);
            transition: all 0.4s ease;
            position: relative;
        }

        .plan-card.featured {
            border-color: var(--primary);
            background: rgba(255,60,0,0.1);
        }

        .plan-card.featured .plan-badge {
            display: block;
        }

        .plan-card:hover {
            transform: translateY(-15px);
            border-color: var(--accent);
            background: rgba(255,212,0,0.1);
        }

        .plan-badge {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 0.5rem 1rem;
            background: var(--primary);
            color: var(--white);
            font-weight: 800;
            font-size: 0.75rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
        }

        .plan-name {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .plan-price {
            font-size: 4rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .plan-price small {
            font-size: 1.2rem;
            color: var(--white);
            font-weight: 400;
        }

        .plan-features {
            list-style: none;
            margin: 2rem 0;
        }

        .plan-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .plan-features i {
            color: var(--accent);
            margin-right: 0.7rem;
        }

        .plan-cta {
            width: 100%;
            padding: 1.3rem;
            background: var(--primary);
            color: var(--white);
            text-align: center;
            text-decoration: none;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
            transition: all 0.3s ease;
            display: block;
        }

        .plan-cta:hover {
            background: var(--accent);
            color: var(--dark);
            transform: scale(1.05);
        }

        /* Why Choose Section */
        .why-choose {
            background: var(--white);
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .reason-card {
            padding: 3rem 2.5rem;
            background: var(--light);
            text-align: center;
            transition: all 0.3s ease;
            border-top: 5px solid var(--primary);
        }

        .reason-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .reason-icon-wrap {
            width: 90px;
            height: 90px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            transition: all 0.3s ease;
        }

        .reason-card:hover .reason-icon-wrap {
            background: var(--dark);
            transform: rotate(360deg) scale(1.1);
        }

        .reason-icon {
            font-size: 2.5rem;
            color: var(--white);
        }

        .reason-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .reason-card p {
            color: var(--gray);
            line-height: 1.7;
        }

        /* Gallery Section */
        .gallery {
            background: var(--light);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-top: 4rem;
        }

        .gallery-item {
            height: 320px;
            background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
            z-index: 10;
        }

        .gallery-item i {
            font-size: 5rem;
            color: rgba(255,255,255,0.2);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,60,0,0.9), rgba(255,212,0,0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: var(--white);
            font-size: 3rem;
        }

        /* Testimonials Section */
        .testimonials {
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: var(--light);
            padding: 3rem;
            border-left: 5px solid var(--primary);
            position: relative;
            clip-path: polygon(0 0, 100% 0, 100% 97%, 0% 100%);
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: 1rem;
            right: 2rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray);
            font-style: italic;
            margin-bottom: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            font-weight: 800;
        }

        .author-info h5 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            font-weight: 800;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* Contact Section */
        .contact {
            background: var(--light);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .contact-card {
            background: var(--white);
            text-align: center;
            padding: 3rem 2.5rem;
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary);
            clip-path: polygon(0 0, 100% 0, 100% 97%, 0% 100%);
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .contact-icon-wrap {
            width: 85px;
            height: 85px;
            background: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            transition: all 0.3s ease;
        }

        .contact-card:hover .contact-icon-wrap {
            background: var(--primary);
            transform: rotate(360deg) scale(1.1);
        }

        .contact-icon {
            font-size: 2.2rem;
            color: var(--white);
        }

        .contact-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .contact-card a {
            color: var(--gray);
            text-decoration: none;
            display: block;
            margin: 0.6rem 0;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .contact-card p {
            color: var(--gray);
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
        }

        .footer-brand p {
            opacity: 0.85;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .social-link i {
            color: var(--white);
            font-size: 1.4rem;
        }

        .footer-section h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            text-align: center;
            opacity: 0.75;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .plans-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 4rem 1.5rem;
            }

            .hero {
                background-attachment: scroll;
            }

            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
            }

            .btn {
                width: 100%;
                max-width: 350px;
                justify-content: center;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-float i {
                font-size: 1.6rem;
            }
        }

        /* Scroll Animation */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }