/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 80px;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    border-radius: 0;
    display: block;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2px;
}

.lang-btn {
    background: none;
    border: none;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.lang-btn.active {
    background: #00ff88;
    color: #000000;
}

.cta-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

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

.hero-subtitle {
    color: #00ff88;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.hero-title span:first-child {
    color: #ffffff;
}

.hero-title span:last-child {
    color: #00ff88;
}

.hero-description {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000000;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
}

.hero-images {
    position: relative;
    height: 500px;
}

.hero-photo {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.hero-photo-1 {
    width: 200px;
    height: 250px;
    top: 0;
    right: 100px;
    transform: rotate(-5deg);
}

.hero-photo-2 {
    width: 180px;
    height: 220px;
    bottom: 100px;
    left: 50px;
    transform: rotate(8deg);
}

.hero-photo-3 {
    width: 160px;
    height: 200px;
    bottom: 0;
    right: 0;
    transform: rotate(-3deg);
}

.hero-photo:hover {
    transform: scale(1.05) rotate(0deg);
}

/* Why Join Section */
.why-join {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

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

.section-subtitle {
    color: #00ff88;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000000;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.benefit-description {
    color: #cccccc;
    line-height: 1.6;
}

.location-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-weight: 500;
}

.location-item i {
    color: #00ff88;
    font-size: 1.25rem;
}

/* Training Focus Section */
.training-focus {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Training Video Showcase */
.training-video-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.training-video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.training-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 960 / 768;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.training-video.loaded {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-play-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-container:hover .video-play-icon {
    transform: scale(1);
}

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

.training-card {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.training-card:hover {
    transform: translateY(-10px);
}

.training-image {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.training-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
    filter: grayscale(0.1) brightness(0.9) blur(0.5px);
}

.training-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.18) 55%, rgba(20,20,20,0.7) 100%);
    z-index: 1;
}

.training-overlay {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1rem 0.5rem 1rem;
    text-align: left;
}

.training-title {
    color: #00ff88;
    font-size: 1.1rem;
    font-weight: 800;
    text-shadow: 0 2px 8px #000;
}

.training-description {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.6;
    background: none;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.1);
}

.pricing-card.featured {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ff88;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
}

.price-period {
    font-size: 1rem;
    color: #cccccc;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature {
    padding: 0.75rem 0;
    color: #cccccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000000;
    border: none;
    padding: 16px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-subtitle {
    color: #00ff88;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #ffffff;
}

.cta-text {
    margin-bottom: 3rem;
}

.cta-text p {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-btn-large {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000000;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.4);
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: #00ff88;
}

.footer-logo-sub {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cccccc;
}

.contact-item i {
    color: #00ff88;
    font-size: 1.25rem;
    width: 20px;
}

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

.footer-copyright {
    color: #888;
    font-size: 0.875rem;
}

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

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding-bottom: 0.5rem;
        min-height: 110px;
    }
    .nav-container {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 0.5rem 10px 0 10px;
        min-height: unset;
    }
    .container {
        margin-top: 50px;
    }
    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: unset;
        margin-bottom: 0.25rem;
        padding: 10px 0 10px 0;
    }
    .logo-img {
        height: 90px;
        max-width: 100%;
    }
    .nav-actions {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0;
    }
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 18px;
        right: 10px;
        margin: 0;
        align-self: flex-end;
    }
    .nav-menu {
        display: none;
    }
    .cta-btn {
        display: none;
    }
    .nav-actions {
        display: none;
    }
    .language-toggle {
        margin-left: auto;
        margin-right: 1rem;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-images {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
        gap: 1rem;
        position: static;
        height: auto;
        margin: 2rem 0 1rem 0;
    }
    .hero-photo {
        position: static;
        width: 130px;
        height: 170px;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.18);
        background: #181818;
        transition: transform 0.3s;
    }
    .hero-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }
    .section-title {
        font-size: 2rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .training-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: none;
    }
    .location-info {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .footer-logo {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }
    .footer-logo-img {
        height: auto;
        max-width: 100%;
        object-fit: contain;
        border-radius: 0;
        display: block;
        margin: 0 auto;
    }
    .footer-logo-text {
        margin-top: 0.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Video showcase mobile styles */
    .training-video-showcase {
        padding: 4rem 0;
    }
    .video-container {
        margin: 2rem auto 0;
        border-radius: 15px;
    }
    .training-video {
        border-radius: 15px;
    }
    .video-play-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .nav-container {
        /* padding: 1rem 15px; */
        gap: 0.75rem;
    }
    .logo-img {
        height: 70px !important;
        max-width: 100%;
        width: auto !important;
    }
    .cta-btn {
        padding: 8px 12px;
        font-size: 0.7rem;
        max-width: calc(100% - 50px);
    }
    .language-toggle {
        margin-right: 0.75rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .cta-title {
        font-size: 1.75rem;
    }
    .benefit-card,
    .training-card,
    .pricing-card {
        padding: 1.5rem;
    }
    .hero-photo {
        width: 100px;
        height: 130px;
    }
    .training-focus {
        padding: 0;
    }
    .why-join {
        padding: 0;
    }
    .pricing {
        padding: 0;
    }
    .cta-section {
        padding: 0;
    }
    
    /* Video showcase small mobile styles */
    .training-video-showcase {
        padding: 3rem 0;
    }
    .video-container {
        margin: 1.5rem auto 0;
        border-radius: 12px;
    }
    .training-video {
        border-radius: 12px;
    }
    .video-play-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 600px) {
    .training-image { height: 140px; }
    .training-card { min-height: 260px; }
    .training-title { font-size: 1rem; }
    .training-description { padding: 1rem; font-size: 0.98rem; }
}

/* --- Mobile Menu Z-Index and Overlay Improvements --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1101;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-content {
    margin-top: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    background: #000;
    border: 2px solid #fff;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    max-width: 95vw;
}
.mobile-menu-btn {
    z-index: 1102;
    position: absolute;
    top: 18px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}
.mobile-menu-btn:focus,
.mobile-menu-btn:hover {
    color: #00ff88;
    outline: none;
}
.mobile-nav-link:focus,
.mobile-nav-link:hover {
    color: #00ff88;
    outline: none;
}
.mobile-lang-btn:focus,
.mobile-lang-btn:hover {
    background: #00ff88;
    color: #000;
    outline: none;
}
.mobile-cta-btn:focus,
.mobile-cta-btn:hover {
    background: linear-gradient(135deg, #00cc6a, #00ff88);
    color: #000;
    outline: none;
}

