:root {
    --navy: #1e3054;
    --navy-dark: #0f1829;
    --gold: #e8b84a;
    --gold-light: #f0c75e;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--navy-dark);
    color: var(--white);
    overflow-x: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 24, 41, 0.85), rgba(15, 24, 41, 0.7)), url('../assets/images/hero-bg-girls.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(15, 24, 41, 0.98), rgba(15, 24, 41, 0.9));
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1.1;
}

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

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--gold);
    color: var(--navy-dark) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 5% 0;
    /* Added top padding to clear fixed navbar */
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-logo {
    width: 240px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 184, 74, 0.2);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--gold);
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .highlight {
    color: var(--gold);
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 500px;
    z-index: 1;
    opacity: 0.5;
    /* Increased visibility per user request */
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    box-shadow: 0 10px 30px rgba(232, 184, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 184, 74, 0.4);
    background: var(--gold-light);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: 20%;
    right: 10%;
    opacity: 0.08;
}

.float-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    bottom: 20%;
    left: 5%;
    opacity: 0.08;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 5%;
    background: var(--navy);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

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

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

section {
    padding: 6rem 5%;
}

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

.section-tag {
    display: inline-block;
    background: rgba(232, 184, 74, 0.2);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid var(--gold);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

#programs {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}

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

.program-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 184, 74, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(232, 184, 74, 0.15);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #d4a53e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.program-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.program-age {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
}

.program-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.program-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

.program-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
}

.program-price span {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

#register {
    background: var(--navy);
}

.register-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--navy-dark);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid var(--gold);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(232, 184, 74, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

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

.form-group select option {
    background: var(--navy-dark);
}

.payment-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 184, 74, 0.3);
}

.payment-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.card-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.card-icon {
    background: rgba(232, 184, 74, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(232, 184, 74, 0.3);
}

.card-input-group {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.btn-submit {
    width: 100%;
    max-width: 400px;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

#training {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}

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

.trainer-profile {
    position: relative;
}

.trainer-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    overflow: hidden;
    position: relative;
}

.trainer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trainer-image:hover .trainer-photo {
    transform: scale(1.05);
}

.trainer-placeholder {
    font-size: 8rem;
    opacity: 0.3;
}

.trainer-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(232, 184, 74, 0.3);
}

.trainer-badge-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
}

.trainer-badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.training-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.training-content h2 span {
    color: var(--gold);
}

.training-content>p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.training-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.training-option {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(232, 184, 74, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.training-option:hover,
.training-option.selected {
    border-color: var(--gold);
    background: rgba(232, 184, 74, 0.1);
}

.training-option-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.training-option-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.training-option-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
}

#schedule {
    background: var(--navy-dark);
}

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

.schedule-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(232, 184, 74, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

.schedule-day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.schedule-time {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.schedule-type {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.schedule-location {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(232, 184, 74, 0.2);
    font-size: 0.85rem;
    color: var(--gold-light);
}

#contact {
    background: var(--navy);
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(232, 184, 74, 0.15);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.contact-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-item a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
}

footer {
    background: var(--navy-dark);
    padding: 3rem 5%;
    text-align: center;
    border-top: 3px solid var(--gold);
}

.footer-logo {
    width: 150px;
    margin: 0 auto 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(232, 184, 74, 0.15);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-text a {
    color: var(--gold);
    text-decoration: none;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .training-container {
        grid-template-columns: 1fr;
    }

    .trainer-profile {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 2px solid var(--gold);
    }

    .nav-links.active {
        display: flex;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .card-input-group {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-logo {
        width: 180px;
    }

    .logo-img {
        height: 45px;
    }
}