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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #1a1a1a;
}

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

/* Header */
.header {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c9a0c9;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c9a0c9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #c9a0c9;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #c9a0c9;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #c9a0c9;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main {
    margin-top: 80px;
}

.section {
    padding: 4rem 0;
}

/* Hero Section */
.hero {
    text-align: center;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,160,201,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: #f0f0f0;
    margin-bottom: 1rem;
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #c9a0c9, #a0b0c9);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(201,160,201,0.4);
    animation: slideInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,160,201,0.6);
}

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

/* About Section */
.about {
    background: #222;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #3c2c3c, #2c3c4c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #c9a0c9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.section-title {
    font-size: 2.5rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
}

/* Services Section */
.services {
    background: #1a1a1a;
}

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

.service-card {
    background: #333;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid #444;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: #c9a0c9;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #c9a0c9;
}

.service-title {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.service-card p {
    color: #d0d0d0;
}

/* Gallery Section */
.gallery {
    background: #222;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.gallery-wrapper {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    touch-action: pan-y;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    touch-action: pan-y;
}

.gallery-item {
    min-width: 320px;
    height: 100%;
    background: linear-gradient(45deg, #3c2c3c, #2c3c4c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #c9a0c9;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 20px;
    border: 2px solid #444;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: #c9a0c9;
    box-shadow: 0 10px 25px rgba(201,160,201,0.3);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-btn {
    background: #c9a0c9;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: #a080a0;
    transform: translateY(-2px);
}

.gallery-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #c9a0c9;
    transform: scale(1.2);
}

/* Pricing Section */
.pricing {
    background: #1a1a1a;
}

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

.pricing-card {
    background: #333;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid #444;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #c9a0c9;
}

.pricing-card h3 {
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.pricing-card p {
    color: #d0d0d0;
}

.price {
    font-size: 2rem;
    color: #c9a0c9;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Training Section */
.training {
    background: #222;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.training-card {
    background: linear-gradient(135deg, #3c2c3c, #2c3c4c);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #444;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: #c9a0c9;
}

.training-card h3 {
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.training-card p {
    color: #d0d0d0;
}

.training-price {
    font-size: 2.5rem;
    color: #c9a0c9;
    font-weight: bold;
    margin: 1rem 0;
}

/* Contact Section */
.contact {
    background: #1a1a1a;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: #333;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #c9a0c9;
    transform: translateY(-5px);
}

.contact-card h3 {
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #d0d0d0;
}

.contact-icon {
    font-size: 2.5rem;
    color: #c9a0c9;
    margin-bottom: 1rem;
}

.contact-link {
    color: #c9a0c9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #a080a0;
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #c9a0c9;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
}

.social-link:hover {
    color: #a080a0;
    background: rgba(201,160,201,0.1);
    transform: translateX(5px);
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Footer */
.footer {
    background: #111;
    color: #d0d0d0;
    text-align: center;
    padding: 2rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(30, 30, 30, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Mobile Swiper Styles */
    .swiper-slide img {
        height: 300px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    .mySwiper {
        padding: 10px 0 40px 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide sections initially for smooth reveal */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Touch gestures for gallery */
.gallery-wrapper {
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .gallery-slider {
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-slider::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        scroll-snap-align: start;
    }
}