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

:root {
    --primary: #e58f06;
    --dark: #212121;
    --dark-light: #2a2a2a;
    --dark-lighter: #333333;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--text-light);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(33, 33, 33, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 143, 6, 0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

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

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

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

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 143, 6, 0.3);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(229, 143, 6, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 5.5rem;
    line-height: 0.95;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #ffa726 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--dark-lighter);
    height: 450px;
}

.hero-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.hero-carousel-item {
    min-width: 100%;
    height: 100%;
}

.hero-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(229, 143, 6, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(229, 143, 6, 0.7);
    border-color: var(--primary);
}

section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

section.full-width {
    max-width: 100%;
    width: 100%;
}

section.full-width > * {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
    letter-spacing: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1rem;
    font-weight: 300;
}

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

.about-heading {
    display: none;
}

.about-text {
    line-height: 1.9;
    color: var(--text-gray);
}

.about-text h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-text .btn-primary {
    display: inline-block;
    margin-top: 1.5rem;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 16px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.location-heading {
    display: none;
}

.location-text {
    line-height: 1.9;
    color: var(--text-gray);
}

.location-text p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.location-text .btn-primary {
    display: inline-block;
    margin-top: 1.5rem;
}

.location-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(229, 143, 6, 0.1);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 143, 6, 0.3);
    box-shadow: 0 20px 40px rgba(229, 143, 6, 0.15);
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(229, 143, 6, 0.2);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.team-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: 0.95rem;
}

.carousel-container {
    position: relative;
    overflow: visible;
    margin-bottom: 3rem;
    perspective: 1000px;
    height: 600px;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-item {
    position: absolute;
    width: 350px;
    height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-lighter);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    border: 2px solid rgba(229, 143, 6, 0.1);
}

.carousel-item.active {
    opacity: 1;
    transform: translateX(0) scale(1) translateZ(0);
    z-index: 3;
    pointer-events: auto;
    border-color: rgba(229, 143, 6, 0.3);
    box-shadow: 0 20px 60px rgba(229, 143, 6, 0.2);
}

.carousel-item.prev {
    opacity: 0.6;
    transform: translateX(-400px) scale(0.85) translateZ(-100px);
    z-index: 2;
    pointer-events: auto;
}

.carousel-item.next {
    opacity: 0.6;
    transform: translateX(400px) scale(0.85) translateZ(-100px);
    z-index: 2;
    pointer-events: auto;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

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

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.05);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.price-card {
    background: rgba(42, 42, 42, 0.5);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(229, 143, 6, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    flex: 0 1 calc(33.333% - 1rem);
}

@media (max-width: 1200px) {
    .price-card {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .price-card {
        flex: 0 1 100%;
    }
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, #ffa726 100%);
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 143, 6, 0.3);
    box-shadow: 0 20px 40px rgba(229, 143, 6, 0.15);
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.price {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.duration {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 300;
}

.price-description {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.8;
    margin-top: 1rem;
}

.price-toggle {
    background: transparent;
    border: 1px solid rgba(229, 143, 6, 0.3);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    margin-top: 0.5rem;
    font-weight: 500;
}

.price-toggle:hover {
    background: rgba(229, 143, 6, 0.1);
    border-color: var(--primary);
}

.price-toggle.active {
    background: rgba(229, 143, 6, 0.1);
}

.special-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.7) 0%, rgba(229, 143, 6, 0.08) 100%);
    border: 1px solid rgba(229, 143, 6, 0.3);
}

.testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.load-more-btn {
    display: block;
    margin: 0 auto;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 1rem 3rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
}

.load-more-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

.load-more-btn.hidden {
    display: none;
}

.testimonial-card {
    background: rgba(42, 42, 42, 0.5);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(229, 143, 6, 0.1);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 143, 6, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.15;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
    font-weight: 300;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
}

.author-info h4 {
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 1rem;
}

.rating {
    color: var(--primary);
    font-size: 0.9rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(229, 143, 6, 0.08);
    border: 1px solid rgba(229, 143, 6, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: var(--primary);
}

.contact-details h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 300;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-details a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
    border: 1px solid rgba(229, 143, 6, 0.2);
    font-weight: 600;
}

.social-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(229, 143, 6, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(229, 143, 6, 0.3);
}

footer {
    background: var(--dark-light);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(229, 143, 6, 0.1);
}

footer p {
    color: var(--text-gray);
    font-weight: 300;
    font-size: 0.9rem;
}

.cta-banner {
    background: linear-gradient(135deg, rgba(229, 143, 6, 0.08) 0%, transparent 100%);
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid rgba(229, 143, 6, 0.15);
}

.cta-banner h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cta-banner p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 300;
}

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

.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(33, 33, 33, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(229, 143, 6, 0.1);
}

@media (max-width: 1024px) {
    .hero-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-heading,
    .location-heading {
        display: block;
        color: var(--primary);
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
        grid-column: 1;
        order: 1;
    }

    .about-image,
    .location-image {
        order: 2;
    }

    .about-text,
    .location-text {
        order: 3;
    }

    .about-text h3 {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

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

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

    .hero-content {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-image {
        border-radius: 16px;
        overflow: hidden;
        height: 350px;
    }

    .hero-carousel-item {
        height: 100%;
    }

    .hero-carousel-item img {
        object-fit: cover;
        object-position: center;
    }

    .carousel-container {
        height: 550px;
    }

    .carousel-item {
        width: 90%;
        max-width: 350px;
    }

    .carousel-item.prev,
    .carousel-item.next {
        opacity: 0;
        transform: translateX(-100%) scale(0.8);
        pointer-events: none;
    }

    .carousel-item.next {
        transform: translateX(100%) scale(0.8);
    }

    .location-image img,
    .about-image img {
        border-radius: 16px !important;
        object-fit: contain !important;
    }
}

@media (max-width: 768px) {
    * {
        max-width: 100%;
    }

    nav {
        padding: 1rem;
    }

    section {
        padding: 4rem 1rem;
        overflow-x: hidden;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

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

    .about-heading,
    .location-heading {
        font-size: 1.3rem;
    }

    .hero-image {
        border-radius: 16px !important;
        overflow: hidden;
        height: 300px;
    }

    .hero-carousel-item {
        height: 100%;
    }

    .hero-carousel-item img {
        object-fit: cover;
        object-position: center;
    }

    .hero-carousel-nav {
        bottom: 10px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .location-image img,
    .about-image img {
        width: 100% !important;
        height: auto !important;
        max-height: 400px;
        object-fit: contain !important;
        border-radius: 16px !important;
    }

    .hero-content,
    .about-content,
    #lokalizacja > div {
        gap: 2rem;
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary);
    color: var(--dark);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(229, 143, 6, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 143, 6, 0.5);
}
