:root {
    --primary-color: #FF4500;
    --bg-dark: #01070a;
    --text-white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: sans-serif;
    height: 5000px;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}

header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--bg-dark);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
}

.logo img {
    display: block;
    width: 150px;
    height: auto;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transition: var(--transition);
}

.btn-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.btn-cta:hover {
    background: transparent;
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.close-btn {
    display: none;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.slide.active {
    display: flex;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 2rem;
    z-index: 10;
    transition: var(--transition);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    background: var(--primary-color);
}

.about {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-content h2 {
    text-align: left;
    margin-bottom: 25px;
}

.about-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.services {
    padding: 80px 0;
    background-color: #111;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #1a1a1a;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #333;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.service-card h3 {
    color: var(--text-white);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray, #a0a0a0);
    line-height: 1.6;
}

.service-card svg {
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover svg {
    transform: scale(1.1);
    stroke: var(--text-white);
}

.testimonials {
    padding: 120px 0;
    background-color: #0a0a0a;
    text-align: center;
}

.sub-title {
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: bold;
}

.section-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.test-slide {
    display: none;
    padding: 0 80px;
}

.test-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.client-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    border: 4px solid var(--primary-color);
}

.test-text {
    font-size: 1.4rem;
    color: #eee;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.client-name {
    color: var(--primary-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
}

.test-prev,
.test-next {
    position: absolute;
    top: 40%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    color: white;
    padding: 20px 15px;
    cursor: pointer;
    transition: var(--transition);
}

.test-prev {
    left: 0;
}

.test-next {
    right: 0;
}

.test-prev:hover,
.test-next:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.contact {
    padding: 120px 0;
    background: #0a0a0a;
    color: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-desc {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 30px;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #151515;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: 0.3s;
}

.info-card:hover {
    border-color: var(--primary-color);
}

.glass-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-form input,
.glass-form textarea {
    width: 100%;
    background: #000;
    border: 1px solid #333;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    color: #fff;
}

.glass-form button {
    width: 100%;
    border-radius: 10px;
    padding: 15px;
}

@media (max-width:767px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.team-card {
    background: #111;
    padding-bottom: 20px;
    text-align: center;
    transition: 0.3s;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .social-overlay {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
}

.social-overlay a {
    color: white;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.team-card:hover .social-overlay a {
    transform: translateY(0);
}

.trainer-info {
    padding: 20px;
    color: #fff;
}

.trainer-info h3 {
    margin: 10px 0 5px;
}

.trainer-info p {
    color: #ff5e14;
    font-weight: bold;
}

#team .section-title {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.site-footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
    direction: ltr;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h3 {
    color: #ff5e14;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 8px;
}

.footer-col ul li a:hover {
    color: #ff5e14;
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ff5e14;
    transform: scale(1.2);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 14px;
}

.copyright span {
    color: #ff5e14;
    font-weight: bold;
}

.testimonial-slider {
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

.test-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.test-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.copyright {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
    margin-top: 50px;
}

.price-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    border: 1px solid #333;
}

.price-card:hover {
    border-color: #ff5e14;
    transform: translateY(-10px);
}

.price-card h3 {
    color: #fff;
    margin-bottom: 20px;
}

.price {
    font-size: 40px;
    font-weight: bold;
    color: #ff5e14;
    margin-bottom: 20px;
}

.price span {
    font-size: 20px;
    vertical-align: top;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-card ul li {
    color: #ccc;
    margin-bottom: 15px;
}

.price-card .btn-cta {
    display: inline-block;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 15px 0;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.price-card.popular {
    border: 2px solid #ff5e14;
    position: relative;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff5e14;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 5px;
}

#pricing .section-title {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

#pricing .sub-title {
    text-align: left;
}

@media (max-width:992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:767px) {
    .menu-toggle {
        display: block;
    }

    .desktop-btn {
        display: none;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        animation: fadeIn 0.4s ease;
    }

    .nav-menu.mobile {
        display: flex !important;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .nav-menu ul li a {
        font-size: 1.8rem;
        font-weight: 600;
        letter-spacing: 2px;
    }

    .close-btn {
        display: block;
    }

    .mobile-btn {
        display: block;
        margin-top: 50px;
        padding: 15px 40px;
        font-size: 1.2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        text-align: center;
    }

    .test-slide {
        padding: 0 20px;
    }

    .test-prev,
    .test-next {
        padding: 15px 10px;
    }
}

@media (max-width:600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 24px !important;
        line-height: 1.2;
    }

    .copyright p {
        font-size: 11px;
    }
}

@media (min-width:768px) {
    .mobile-btn {
        display: none;
    }
}

.footer-col .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

section {
    padding-top: 120px;
    padding-bottom: 120px;
}