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

:root {
    --primary-color: #FFD41D;
    --bg-dark: #1a1b1e;
    --bg-dark-alt: #25262b;
    --bg-card: #2c2e33;
    --text-primary: #ffffff;
    --text-secondary: #c1c2c5;
    --text-muted: #909296;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero__logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffc107 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(255, 212, 29, 0.4);
    animation: float 3s ease-in-out infinite;
}

.hero__logo-text {
    font-size: 56px;
    font-weight: 900;
    color: var(--bg-dark);
    letter-spacing: 4px;
}

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

.hero__title {
    font-size: clamp(80px, 20vw, 450px);
    font-weight: 900;
    letter-spacing: clamp(2px, 1vw, 20px);
    padding: 0 20px;
    margin-bottom: 40px;
    color: var(--bg-dark);
    text-shadow: none;
    text-align: center;
}

.hero__subtitle {
    font-size: clamp(24px, 4vw, 80px);
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 88px;
    text-align: center;
}

.hero__tagline {
    font-size: 36px;
    color: var(--bg-dark);
    margin-bottom: 90px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-dark);
    color: var(--primary-color);
    padding: 28px 64px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
    display: none; /* Hidden on desktop */
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 32px;
    color: var(--bg-dark);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title span {
    color: var(--primary-color);
}

.section-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 212, 29, 0.4);
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 212, 29, 0.6);
}

.section-divider::before {
    left: -20px;
}

.section-divider::after {
    right: -20px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 212, 29, 0.2);
}

.feature-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-dark-alt);
}

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

.service-card {
    background-color: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 212, 29, 0.2);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffc107 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
    transform: rotateY(180deg);
}

.service-card__icon i {
    font-size: 36px;
    color: var(--bg-dark);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery__wrapper {
    flex: 1;
    overflow: hidden;
}

.gallery__grid {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-page {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 10px;
}

.gallery__item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 3px solid var(--primary-color);
    padding: 12px;
    background-color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(255, 212, 29, 0.2);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__item:hover {
    border-color: #ffc107;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.gallery__placeholder-temp {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-card);
    border-radius: 8px;
}

.gallery__placeholder-temp i {
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.3;
}

.gallery__placeholder-temp span {
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.5;
}

.gallery__note {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--bg-card);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 212, 29, 0.2);
}

.gallery__note i {
    color: var(--primary-color);
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background-color: var(--bg-dark-alt);
}

.why-us__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit {
    background-color: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.benefit:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.benefit__number {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 72px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
}

.benefit h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.benefit p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials__wrapper {
    flex: 1;
    overflow: hidden;
}

.testimonials__grid {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonials-page {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 32px;
    padding: 0 10px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: var(--text-muted);
    color: var(--text-muted);
}

.carousel-btn:disabled:hover {
    background: var(--bg-card);
    transform: scale(1);
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 212, 29, 0.2);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-card__stars i {
    color: var(--primary-color);
    font-size: 16px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    flex: 1;
    overflow-y: auto;
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-card__author strong {
    font-size: 16px;
    color: var(--text-primary);
}

.testimonial-card__author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-dark-alt);
}

.contact__content {
    max-width: 900px;
    margin: 0 auto;
}

.contact__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.contact__item {
    background-color: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact__item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 212, 29, 0.2);
}

.contact__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffc107 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 212, 29, 0.3);
}

.contact__icon i {
    font-size: 32px;
    color: var(--bg-dark);
}

.contact__item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.contact__item a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact__item a:hover {
    color: #ffc107;
}

.contact__item p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.contact__form {
    background-color: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--bg-dark-alt);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 212, 29, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffc107 100%);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 212, 29, 0.3);
}

.contact__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 212, 29, 0.5);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer__brand h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 4px;
}

.footer__brand p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social-link {
    width: 48px;
    height: 48px;
    background-color: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about__content,
    .why-us__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero__title {
        font-size: clamp(60px, 15vw, 100px);
        letter-spacing: 8px;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero__subtitle {
        font-size: clamp(20px, 4vw, 28px);
        margin-bottom: 44px;
        text-align: center;
    }
    
    .hero__cta {
        padding: 20px 48px;
        font-size: 24px;
        gap: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-page {
        grid-template-columns: 1fr;
    }
    
    .testimonials-page {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

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

    .footer__content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        display: block;
    }

    
    /* Wycentruj wszystko na mobile */
    .hero__content {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .services__grid,
    .testimonials__grid,
    .gallery__grid {
        text-align: center;
    }
    
    .service__card,
    .testimonial__card {
    
    .hero__cta,
    .contact__info {
        margin-left: auto;
        margin-right: auto;
    }
        text-align: center;
    }
    .hero__title {
        font-size: clamp(140px, 32vw, 240px);
        letter-spacing: 0;
        text-indent: 0;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 16px;
        text-align: center;
    }

    .hero__subtitle {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 36px;
        text-align: center;
    }

    .hero__logo {
        width: 120px;
        height: 120px;
    }

    .hero__logo i {
        font-size: 56px;
    }

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

    .hero__cta {
        padding: 16px 40px;
        font-size: 18px;
        gap: 12px;
    }
}
