:root {
    --navy: #0C2340;
    --navy-light: #1a3a61;
    --orange: #FF9F43;
    --orange-hover: #ff8c1a;
    --white: #ffffff;
    --light-blue: #F0F4F8;
    --soft-gray: #f7f9fb;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --max-width: 1100px;
    --radius: 24px;
    --shadow: 0 10px 30px rgba(12, 35, 64, 0.08);
    --shadow-hover: 0 15px 35px rgba(12, 35, 64, 0.12);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* Container */
.wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header / Nav */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: var(--max-width);
    margin: 0 auto
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand img {
    height: 80px;
    display: block;
    border-radius: 50%;
}

.brand h1 {
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    margin: 0;
    color: var(--navy);
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 24px;
    align-items: center
}

nav a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s
}

nav a:hover {
    color: var(--orange)
}

.lang-switch {
    border: 2px solid var(--navy);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.2s;
}

.lang-switch:hover {
    background: var(--navy);
    color: var(--white);
}

.cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.3);
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.cta:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.4);
}

/* Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
}

@media(max-width:880px) {
    nav {
        display: none;
        position: absolute;
        right: 20px;
        top: 80px;
        background: var(--white);
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(12, 35, 64, 0.15);
        flex-direction: column;
        width: 200px;
        text-align: center;
    }

    .menu-toggle {
        display: block
    }

    nav.active {
        display: flex
    }
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.hero h2 {
    font-family: Montserrat;
    font-size: 42px;
    margin: 0 0 16px;
    color: var(--navy);
    line-height: 1.1;
    font-weight: 800;
}

.hero p {
    margin: 0 0 24px;
    color: var(--text-muted);
    font-size: 18px;
    max-width: 500px;
}

.hero .buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid var(--navy);
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    transition: all 0.2s;
    background: transparent;
}

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

.hero-right {
    flex: 0 0 400px;
    position: relative;
    z-index: 2;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 20px 20px 0 var(--orange);
    transform: rotate(2deg);
    transition: transform 0.3s;
}

.hero-right:hover img {
    transform: rotate(0deg) scale(1.02);
}

@media(max-width:880px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero .buttons {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        max-width: 400px;
    }

    .hero-right img {
        box-shadow: 10px 10px 0 var(--orange);
    }
}

/* Wave Divider */
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-bottom .shape-fill {
    fill: #FFFFFF;
}

.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-top .shape-fill {
    fill: #FFFFFF;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-bg {
    background-color: var(--light-blue);
}

h3 {
    font-family: Montserrat;
    font-size: 32px;
    margin: 0 0 40px;
    color: var(--navy);
    text-align: center;
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.small {
    font-size: 15px;
    color: var(--text-muted);
}

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

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

/* About Cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-point-icon {
    color: var(--orange);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Grafik table */
.table-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 40px;
    text-align: center;
}

/* Pricing */
.pricing-card {
    text-align: center;
    border: 2px solid var(--light-blue);
}

.pricing-card.highlight {
    border-color: var(--orange);
    background: #fffbf5;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin: 16px 0;
}

/* Kadra */
.trainer {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.trainer img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--light-blue);
    flex-shrink: 0;
}

.trainer-info strong {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-hover);
}

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

@media(max-width:480px) {
    .gallery {
        grid-template-columns: 1fr
    }
}

/* Reviews */
.review-card {
    position: relative;
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow);
}

.review-card em {
    font-style: normal;
    font-size: 16px;
    color: var(--navy);
    line-height: 1.5;
    display: block;
    margin-bottom: 16px;
}

.review-author {
    font-weight: 700;
    color: var(--orange);
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

label {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
}

input,
textarea,
select {
    padding: 14px;
    border-radius: 12px;
    border: 2px solid #eef2f5;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fcfdfe;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--orange);
}

button[type="submit"] {
    background: var(--navy);
    color: var(--white);
    padding: 16px;
    border-radius: 50px;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
    width: 100%;
    transition: background 0.2s, transform 0.2s;
}

button[type="submit"]:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

@media(max-width:980px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    background: var(--white);
    border-top: 1px solid var(--light-blue);
}

.socials {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 8px
}

/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 35, 64, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#lightbox.active {
    display: flex;
    opacity: 1;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#lightbox.active img {
    transform: scale(1);
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
}

#lightbox-close:hover {
    color: var(--orange);
}

/* Cursor pointer for zoomable images */
.gallery img,
.trainer img,
.hero-right img {
    cursor: zoom-in;
}