/* Base Styles */
:root {
    --primary-color: #FF7A00;
    --primary-dark: #E66A00;
    --secondary-color: #333333;
    --light-color: #F8F8F8;
    --dark-color: #1A1A1A;
    --gray-color: #777777;
    --light-gray-color: #EEEEEE;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
}

.section-title span {
    color: var(--primary-color);
}

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

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

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

.btn--primary:hover {
    background-color: var(--primary-dark);
    color: #FFFFFF;
    border-color: var(--primary-dark);
}

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

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

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

.btn--large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.logo a {
    display: block;
}

.nav__list {
    display: flex;
}

.nav__item {
    margin: 0 15px;
}

.nav__link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.phone__link {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.phone__link svg {
    margin-right: 8px;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background-color: var(--light-color);
}

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

.hero__content {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 50px;
}

.hero__title {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero__subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.hero__image {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

.hero__image img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Features */
.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.feature {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    margin: 0 15px 30px;
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature__icon {
    margin-bottom: 20px;
}

.feature__title {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature__text {
    color: var(--gray-color);
}

/* Benefits Section */
.benefits {
    background-color: var(--light-gray-color);
}

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

.benefits__content {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 50px;
}

.benefits__image {
    flex: 0 0 50%;
    max-width: 50%;
}

.benefits__image img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefits__list {
    margin-bottom: 30px;
}

.benefits__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefits__item svg {
    margin-right: 15px;
    flex-shrink: 0;
}

/* Services Section */
.services__grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.service {
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px);
    margin: 0 15px 30px;
    text-align: center;
    transition: var(--transition);
}

.service__image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.service__image img {
    transition: var(--transition);
}

.service:hover .service__image img {
    transform: scale(1.05);
}

.service__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.service__text {
    color: var(--gray-color);
}

/* Schedule Section */
.schedule {
    background-color: var(--light-color);
}

.timetable {
    max-width: 700px;
    margin: 0 auto 40px;
}

.timetable__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    transition: var(--transition);
}

.timetable__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timetable__time {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.timetable__info {
    color: var(--gray-color);
}

.schedule__cta {
    text-align: center;
}

/* Trainers Section */
.trainers__grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.trainer {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    margin: 0 15px 30px;
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.trainer:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.trainer__image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.trainer__name {
    font-size: 22px;
    margin-bottom: 5px;
}

.trainer__position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.trainer__bio {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.trainer__social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.trainer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray-color);
    transition: var(--transition);
}

.trainer__social-link:hover {
    background-color: var(--primary-color);
}

.trainer__social-link:hover svg path {
    fill: #FFFFFF;
}

/* Pricing Section */
.plans {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.plan {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan--featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.plan--featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan__header {
    padding: 30px;
    text-align: center;
    background-color: var(--light-color);
    border-bottom: 1px solid var(--light-gray-color);
}

.plan__name {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.plan__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.plan__currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 5px;
}

.plan__amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--dark-color);
}

.plan__period {
    font-size: 14px;
    color: var(--gray-color);
    margin-top: 5px;
}

.plan__features {
    padding: 30px;
}

.plan__list {
    margin-bottom: 0;
}

.plan__feature {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--gray-color);
}

.plan__feature:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.625 10.1063L2.71875 7.2L1.88125 8.03125L5.625 11.775L13.125 4.275L12.2938 3.44375L5.625 10.1063Z' fill='%23FF7A00'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.plan__footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* FAQ Section */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion__item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #FFFFFF;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

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

.accordion__header svg {
    transition: var(--transition);
}

.accordion__header.active svg {
    transform: rotate(180deg);
}

.accordion__content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: #FFFFFF;
}

.accordion__content p {
    padding: 0 0 20px;
    color: var(--gray-color);
}

.accordion__header.active + .accordion__content {
    max-height: 200px;
}

/* Video Section */
.video__wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.video__play svg {
    transition: var(--transition);
}

.video__play:hover svg circle {
    fill: var(--primary-dark);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
}

.testimonials__slider {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
}

.testimonial {
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 15px 1rem;
}

.testimonial__content {
    margin-bottom: 20px;
}

.testimonial__content p {
    font-style: italic;
    color: var(--gray-color);
}

.testimonial__author {
    display: flex;
    align-items: center;
}

.testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial__name {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial__position {
    color: var(--primary-color);
    font-size: 14px;
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonials__dot--active,
.testimonials__dot:hover {
    background-color: var(--primary-color);
}

/* Free Trial Section */
.free-trial {
    background-color: var(--primary-color);
    color: #FFFFFF;
    text-align: center;
}

.free-trial__inner {
    max-width: 800px;
    margin: 0 auto;
}

.free-trial__title {
    font-size: 36px;
    margin-bottom: 20px;
}

.free-trial__text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.free-trial .btn--primary {
    background-color: #FFFFFF;
    color: var(--primary-color);
    border-color: #FFFFFF;
}

.free-trial .btn--primary:hover {
    background-color: transparent;
    color: #FFFFFF;
}

/* Contact Section */
.contact__inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact__info {
    flex: 0 0 calc(40% - 15px);
    max-width: calc(40% - 15px);
}

.contact__block {
    margin-bottom: 30px;
}

.contact__block-title {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.contact__block-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact__block-text {
    margin-bottom: 10px;
    color: var(--gray-color);
}

.contact__block-text a {
    color: var(--gray-color);
}

.contact__block-text a:hover {
    color: var(--primary-color);
}

.contact__form-wrapper {
    flex: 0 0 calc(60% - 15px);
    max-width: calc(60% - 15px);
}

.contact__form {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form__group {
    margin-bottom: 20px;
    position: relative;
}

.form__control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray-color);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--dark-color);
    transition: var(--transition);
}

.form__control:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form__label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--gray-color);
    pointer-events: none;
    transition: var(--transition);
}

.form__control:focus ~ .form__label,
.form__control:not(:placeholder-shown) ~ .form__label {
    top: 0;
    left: 10px;
    font-size: 12px;
    padding: 0 5px;
    background-color: #FFFFFF;
    color: var(--primary-color);
}

.form__control:placeholder-shown ~ .form__label {
    opacity: 0;
}

textarea.form__control ~ .form__label {
    top: 20px;
}

textarea.form__control:focus ~ .form__label,
textarea.form__control:not(:placeholder-shown) ~ .form__label {
    top: 0;
}

.form__group--checkbox {
    display: flex;
    align-items: center;
}

.form__group--checkbox input {
    margin-right: 10px;
}

.form__group--checkbox label {
    font-size: 14px;
    color: var(--gray-color);
}

.form__group--checkbox label a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Map Section */
.map {
    padding: 0;
    height: 450px;
}

.map iframe {
    display: block;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: #FFFFFF;
    padding: 80px 0 30px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer__col {
    flex: 1;
    padding: 0 15px;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer__title {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer__title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer__menu li {
    margin-bottom: 10px;
}

.footer__menu a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Media Queries */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .section-title {
        font-size: 30px;
    }

    .feature,
    .trainer {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }

    .service {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }

    .hero__content,
    .hero__image,
    .benefits__content,
    .benefits__image {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .hero__content {
        margin-bottom: 40px;
        text-align: center;
    }

    .benefits__content {
        margin-bottom: 40px;
    }

    .hero__inner,
    .benefits__inner {
        flex-direction: column;
    }

    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .plans {
        flex-direction: column;
        gap: 30px;
    }

    .plan {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .plan--featured {
        transform: scale(1);
    }

    .plan--featured:hover {
        transform: translateY(-10px);
    }

    .contact__inner {
        flex-direction: column;
    }

    .contact__info,
    .contact__form-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact__info {
        margin-bottom: 30px;
    }

    .footer__inner {
        flex-direction: column;
    }

    .footer__col {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .feature,
    .trainer,
    .service {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero {
        padding: 150px 0 70px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .phone {
        display: none;
    }
}

/* Success Page Styles */
.success {
    padding: 120px 0 80px;
}

.success__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.success__icon {
    margin-bottom: 30px;
}

.success__title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.success__text {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.success__details {
    margin: 30px 0;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    text-align: left;
}

.success__details h2 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.success__details h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.success__info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.success__field {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray-color);
}

.success__label {
    flex: 0 0 150px;
    font-weight: 600;
    color: var(--dark-color);
}

.success__value {
    flex: 1;
    color: var(--gray-color);
}

.success__cta {
    margin-top: 30px;
}

.success__cta .btn {
    min-width: 200px;
}

/* Animation for Success Icon */
@keyframes checkmark {
    0% {
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.success__icon svg path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: checkmark 2s ease forwards;
}

/* Page Section Styles (for all single pages) */
.page-section {
    padding: 120px 0 80px;
}

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

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.content-block h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.content-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-block p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.content-block ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.content-block ul li {
    margin-bottom: 10px;
    color: var(--gray-color);
    position: relative;
    padding-left: 15px;
}

.content-block ul li:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.content-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.content-block a:hover {
    color: var(--primary-dark);
}

.last-updated {
    font-style: italic;
    color: var(--gray-color);
    font-size: 14px;
    text-align: right;
}

/* Media Queries for Success Page */
@media (max-width: 768px) {
    .success__inner {
        padding: 30px 20px;
    }

    .success__details {
        padding: 20px;
    }

    .success__label {
        flex: 0 0 100%;
        margin-bottom: 5px;
    }

    .success__value {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .success {
        padding: 100px 0 60px;
    }

    .success__title {
        font-size: 26px;
    }

    .success__text {
        font-size: 16px;
    }

    .success__details h2 {
        font-size: 20px;
    }
}