@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #0B0B0B;
    --bg-secondary: #1A1A1A;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #E6C045;
    --text-main: #FFFFFF;
    --text-muted: #B3B3B3;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-weight: 400;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold {
    color: var(--accent-gold);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* Base Components */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-primary:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 40px;
}

.logo-fallback {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-main);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url('https://lh3.googleusercontent.com/gps-cs-s/AHVAweqROwjiwXAn5cfGQeyAOdKNEiFAYsZX8EoZomKr2TLhXyjcuF7FvA1kkD7L1jp0Hig0xKPE2K2H_fmyBup05D70TulQKruKDnNdEbRDqKVjPD14XmLG5HlhjTQJh7ujD_-4kXpolGqSWSsz=s1360-w1360-h1020-rw') center/cover no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11,11,11,0.9) 0%, rgba(11,11,11,0.5) 50%, rgba(11,11,11,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.9;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
    color: var(--text-main);
}

/* About Section */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(212, 175, 55, 0.2);
}

.about-img img {
    height: 600px;
    object-fit: cover;
    width: 100%;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-content h3 {
    font-family: var(--font-body);
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0;
}

/* Classes Section */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.class-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.class-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.class-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11,11,11,0.9) 0%, rgba(11,11,11,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.class-card:hover img {
    transform: scale(1.1);
}

.class-card:hover .class-overlay {
    background: linear-gradient(to top, rgba(212,175,55,0.9) 0%, rgba(11,11,11,0.4) 100%);
}

.class-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.class-overlay p {
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.class-card:hover .class-overlay h3 {
    transform: translateY(0);
}

.class-card:hover .class-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Transformation Section */
.transformation {
    background: var(--bg-secondary);
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
}

.img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://lh3.googleusercontent.com/gps-cs-s/AHVAwercuA5b58V0BT1iBZx5n9KmjQPevhB2UBx8lmGoUiZg190J0WVCh4p7HuHwm_wMClV75rK-LgUxKLZfyb9sTB9GqmCAmKMxPPi8tk6Vd27sw355M6bIahV9VtyDB8-cbNzmt7-r=s1360-w1360-h1020-rw') center/cover;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('https://lh3.googleusercontent.com/gps-cs-s/AHVAweqROwjiwXAn5cfGQeyAOdKNEiFAYsZX8EoZomKr2TLhXyjcuF7FvA1kkD7L1jp0Hig0xKPE2K2H_fmyBup05D70TulQKruKDnNdEbRDqKVjPD14XmLG5HlhjTQJh7ujD_-4kXpolGqSWSsz=s1360-w1360-h1020-rw') center/cover;
    border-right: 4px solid var(--accent-gold);
    overflow: hidden;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: ew-resize;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Trainers */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.trainer-card {
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.trainer-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.trainer-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.trainer-info {
    padding: 25px;
}

.trainer-info h3 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

/* Pricing */
.pricing {
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--bg-primary);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.pricing-card:hover {
    border-color: var(--accent-gold);
}

.pricing-card h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--accent-gold);
}

/* Contact / Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: var(--bg-primary);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    font-family: var(--font-body);
    border-radius: 4px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Footer */
footer {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.wa-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Specific */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-auto-rows: 300px;
    gap: 20px;
    padding: 150px 0 100px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-item::after {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--accent-gold);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .about-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img img {
        height: 400px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .wa-float {
        bottom: 20px;
        right: 20px;
    }
}
