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

:root {
    --primary-gold: #C8A882;
    --primary-dark: #1A1A1A;
    --secondary-dark: #2B2B2B;
    --accent-gold: #D4AF6A;
    --text-light: #F5F5F5;
    --text-gray: #CCCCCC;
    --background-dark: #0F0F0F;
    --border-gold: #B8986C;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(200, 168, 130, 0.1);
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(15, 15, 15, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--accent-gold);
}

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

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Hero Navigation Dots */
.hero-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(200, 168, 130, 0.3);
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-nav-dot:hover {
    background: rgba(200, 168, 130, 0.6);
    transform: scale(1.2);
}

.hero-nav-dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-gold);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 168, 130, 0.3);
}

/* Section Styles */
section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-gold);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: var(--primary-gold);
    margin: 1.5rem auto 0;
}

/* Stats Counter Section */
.stats-section {
    background: var(--primary-dark);
    padding: 5rem 5%;
    margin: 0 auto;
    max-width: 100%;
    opacity: 1;
    transform: none;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: rgba(200, 168, 130, 0.3);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Slider Section */
.slider-section {
    background: var(--secondary-dark);
    padding: 6rem 5%;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
    opacity: 1;
    transform: none;
}

.slider-section .section-title {
    padding: 0 5%;
}

.slider-container {
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slider-track:hover {
    animation-play-state: paused;
}

.slide {
    min-width: 350px;
    background: var(--primary-dark);
    padding: 3rem 2rem;
    border: 1px solid rgba(200, 168, 130, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.slide:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(200, 168, 130, 0.2);
}

.slide-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.3s ease;
}

.slide:hover .slide-icon {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.slide h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.slide p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 3px solid var(--border-gold);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text h4 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-light);
    font-weight: 600;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.about-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    color: var(--text-gray);
    position: relative;
    line-height: 1.7;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    background: var(--secondary-dark);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(200, 168, 130, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.step::before {
    content: 'KROK';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    padding: 5px 20px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.step:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 4rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.step p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--secondary-dark);
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(200, 168, 130, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(200, 168, 130, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
}

.pricing-card.featured::before {
    content: 'NAJPOPULARNIEJSZY';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: 5px 20px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.pricing-card .price {
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card .price-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(200, 168, 130, 0.1);
    font-size: 0.95rem;
}

.pricing-card li::before {
    content: '✓';
    color: var(--primary-gold);
    font-weight: bold;
    margin-right: 10px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial {
    background: var(--secondary-dark);
    padding: 2.5rem;
    border-left: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 600;
}

/* Contact Section */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-dark);
    border: 1px solid rgba(200, 168, 130, 0.2);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(200, 168, 130, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-email {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--primary-gold);
    text-decoration: none;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.package-info {
    background: var(--secondary-dark);
    padding: 1rem;
    border-left: 3px solid var(--primary-gold);
    text-align: left;
    margin-bottom: 1rem;
}

.package-info p {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

.package-info strong {
    color: var(--primary-gold);
}

/* Footer */
footer {
    background: var(--primary-dark);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(200, 168, 130, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item::after {
        display: none;
    }

    .slide {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

    .stat-number {
        font-size: 3.5rem;
    }

    .slide {
        min-width: 280px;
    }
}
