:root {
    /* Brand Colors */
    --gold: #FFC800;
    --gold-hover: #e6b400;
    --gray: #8A8F98;
    --bg-black: #000000;
    --bg-darker: #0A0A0A;
    --bg-card: #141414;
    --text-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 5rem 1rem;
    --transition: all 0.3s ease;
}

/* === BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section {
    padding: var(--section-padding);
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-gold {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-black);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 200, 0, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--bg-black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* === HEADER & NAVIGATION === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
    background: transparent;
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(138, 143, 152, 0.2);
    padding: 0.5rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

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

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--gold);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.trust-badge-strip {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(5px);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    display: inline-flex;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* === ABOUT SECTION === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.rounded-image {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.about-overlay-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    opacity: 0.2;
    pointer-events: none;
}

.about-overlay-logo img {
    width: 100%;
    height: auto;
}

.differentiators-list {
    margin-top: 2rem;
}

.differentiators-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.differentiators-list i {
    margin-top: 0.3rem;
    font-size: 1.2rem;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--gold);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
}

/* === PROGRAMS === */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.program-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-img {
    transform: scale(1.05);
}

.program-content {
    padding: 1.5rem;
}

.program-content h3 {
    color: var(--gold);
    font-size: 1.3rem;
}

.program-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* === TRAINERS === */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.trainer-card {
    text-align: center;
}

.trainer-img-wrapper {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
}

.trainer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.trainer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.trainer-specialty {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.trainer-bio {
    color: var(--gray);
}

/* === PRICING === */
.branch-toggle-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.branch-btn {
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--gray);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.branch-btn:hover {
    border-color: var(--text-white);
    color: var(--text-white);
}

.branch-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-black);
}

.branch-header {
    text-align: center;
    margin-bottom: 2rem;
}

.branch-header h3 {
    font-size: 1.8rem;
    color: var(--text-white);
}

.branch-header p {
    color: var(--gray);
}

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

.pricing-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 200, 0, 0.3);
}

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

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-black);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.price-list {
    text-align: left;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li.highlight-price {
    background: rgba(255, 200, 0, 0.1);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--gold);
}

.price-list li.highlight-price span,
.price-list li.highlight-price strong {
    color: var(--gold);
}

.price-list span {
    color: var(--gray);
}

.price-list strong {
    color: var(--text-white);
    font-size: 1.1rem;
}

.pt-card {
    background: linear-gradient(145deg, var(--bg-card), #1a1a1a);
}

.pt-desc {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pt-price {
    font-size: 2rem;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pt-price .label {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

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

.testimonial-card {
    background: var(--bg-black);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.quote {
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.author {
    color: var(--gray);
    font-family: var(--font-body);
    font-weight: 600;
}

/* === GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition);
}

.gallery-img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* === LOCATIONS === */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.location-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--gold);
}

.location-card h3 {
    color: var(--gold);
}

.location-card .address,
.location-card .contact-info {
    margin-bottom: 1rem;
    color: var(--gray);
}

.location-card i {
    width: 20px;
    margin-right: 10px;
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

/* === FAQ === */
.faq-container {
    max-width: 800px;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--bg-card);
    color: var(--text-white);
    padding: 1.5rem;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active {
    color: var(--gold);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-darker);
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--gray);
}

/* === CONTACT === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
}

.info-item p, .info-item a {
    color: var(--gray);
}

.info-item a:hover {
    color: var(--gold);
}

.lead-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.lead-form h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select option {
    background-color: var(--bg-darker);
    color: var(--text-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-success {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
    border-radius: 4px;
    color: #2ecc71;
    font-weight: 500;
}

/* === FOOTER === */
.footer {
    background: var(--bg-black);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    font-size: 1.2rem;
}

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

.footer h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: var(--gray);
}

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

.footer-locations li {
    color: var(--gray);
    margin-bottom: 1rem;
}

.footer-locations strong {
    color: var(--text-white);
    display: block;
}

.footer-contact p {
    color: var(--gray);
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

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

/* === FLOATING BUTTONS === */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.floating-wa:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    color: #FFF;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--bg-black);
    border: none;
    border-radius: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

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

/* === ANIMATIONS & REVEALS === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .contact-wrapper { gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--bg-darker);
        padding: 5rem 2rem;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-actions .btn {
        display: none;
    }

    .hero-title { font-size: 2.8rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .contact-wrapper { grid-template-columns: 1fr; }
    
    .locations-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; }
    
    .back-to-top {
        right: 30px;
        bottom: 100px;
    }
}
