:root {
    --primary: #FF1493; /* Deep Pink */
    --primary-light: #FF69B4;
    --secondary: #00BFFF; /* Deep Sky Blue */
    --accent: #FFD700; /* Gold */
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #f1f5f9;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-premium: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    --radius-premium: 24px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

header.scrolled {
    background: var(--glass);
    padding: 0.8rem 0;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -1px;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide links on mobile for mockup simplicity */
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 20px;
}

.lang-btn {
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 15px;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all 0.3s;
}

.lang-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .lang-switcher { display: none; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(255, 20, 147, 0.1), transparent),
                radial-gradient(circle at bottom left, rgba(0, 191, 255, 0.1), transparent);
    padding: 120px 0 60px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-tagline {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 2rem;
    color: var(--bg-dark);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #475569;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* About Section Refactored */
.about {
    background-color: white;
    overflow: hidden;
}

.about-tagline {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.about-title {
    margin-bottom: 2.5rem;
    font-size: 3rem;
}

.about-desc {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-bottom: 3rem;
}

.about-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
}

.about-list li strong {
    color: var(--bg-dark);
}

.hero-image {
    flex: 1;
    min-height: 500px;
    background: url('assets/hero.png') no-repeat center center;
    background-size: cover;
    border-radius: 40px;
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 10px 20px -10px var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px var(--primary);
}

/* Features/Programs */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: all 0.3s;
    border: 1px solid #f1f5f9;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

/* Trainers Section Refactored */
.trainers-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.trainer-card {
    background: transparent;
    padding: 0;
    width: 400px;
    text-align: center;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: visible;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

.trainer-image-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 4px solid white;
    transition: all 0.4s ease;
}

.trainer-card:hover .trainer-image-wrapper {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 20, 147, 0.2);
}

.trainer-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trainer-card:hover .trainer-image-wrapper img {
    transform: scale(1.05);
}

.trainer-bio-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 1.5rem 0;
    text-align: left;
    background: rgba(248, 250, 252, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
}


.trainer-name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.trainer-role {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.trainer-desc {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.trainer-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trainer-tag {
    font-size: 0.75rem;
    background: #f8fafc;
    color: #475569;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

/* Equipment Section Refactored */
.equipment-showcase {
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 30px;
    border: 1px solid #e2e8f0;
}

.equipment-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    text-align: center;
}

.equipment-item {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 20px;
}

.equipment-item:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.equipment-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.equipment-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* About Section */
.about {
    background-color: #fff;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
}

.about-content {
    flex: 1;
}

/* Steps / How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.3);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-premium);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 10;
}

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

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
}

.price-amount span {
    font-size: 1rem;
    color: #64748b;
}

.price-features {
    list-style: none;
    margin-bottom: 3rem;
    flex: 1;
}

.price-features li {
    margin-bottom: 1rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 900;
}

.price-card .btn {
    text-align: center;
    justify-self: center;
    width: 100%;
}

/* FAQ Refined */
.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--bg-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-item.active h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    color: #64748b;
    line-height: 1.7;
}

.faq-item.active p {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-toggle {
    font-size: 1.5rem;
    color: #94a3b8;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary);
}

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

.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
}

.reveal-up { transform: translateY(40px); }
.reveal-up.active { transform: translateY(0); }

/* Floating Animation for Hero Removed */

/* Section Taglines */
.section-tagline {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Background Utilities */
.bg-white { background-color: white; }
.bg-f8 { background-color: #f8fafc; }

/* CTA & Contact Sections */
.cta {
    background: linear-gradient(135deg, var(--bg-dark), #1e293b);
    color: white;
    text-align: center;
    padding: 8rem 0;
}

.cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.cta p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-section {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 6rem 0;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    overflow: hidden;
}

.google-form {
    width: 100%;
    border-radius: 12px;
    border: none;
}

.contact-footer-text {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 2rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary);
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #64748b;
    font-size: 0.85rem;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 5rem 0 2rem;
}

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

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Footer Refined */
.footer-logo-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.1;
}

.footer-logo-online {
    font-size: 0.55rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    background: rgba(255, 20, 147, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
    line-height: 1;
    margin-top: 4px;
}

.footer-logo-text {
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    gap: 4px;
}

.footer-logo-text span:first-child {
    color: var(--primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    color: #94a3b8;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-image { 
        width: 100%;
        min-height: 300px;
        order: -1; 
    }
    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .hero-btns .btn {
        margin-left: 0 !important;
        width: 100%;
        max-width: 300px;
    }
    .about-flex { flex-direction: column; }
}

/* Auth Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-20px);
    transition: transform 0.4s;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 20px;
}

.modal-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 15px;
    transition: all 0.3s;
    color: #64748b;
}

.modal-tab.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.5s;
}

.auth-form h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.input-group {
    margin-bottom: 1.2rem;
}

.input-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 2px solid #f1f5f9;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

.w-100 { width: 100%; }

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
