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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 25%, #f5f5f5 50%, #ffffff 75%, #fafafa 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(194, 24, 91, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

/* Nawigacja */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    background: #ffffff;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    background: #ffffff;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: #e91e63;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #e91e63;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #e91e63;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 80%;
}

/* Sekcje */
section {
    padding: 0;
    max-width: 100%;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

section:first-of-type {
    margin-top: 70px;
}

/* Strona główna */
#home {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 228, 236, 0.3) 50%, rgba(255, 255, 255, 0.95) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, rgba(233, 30, 99, 0.02) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

#home::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(194, 24, 91, 0.06) 0%, rgba(194, 24, 91, 0.02) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.home-content {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 5rem 2rem 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    border-radius: 0;
}

#home .logo-main {
    max-width: 700px;
    width: 90%;
    max-height: 300px;
    height: auto;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
    background: transparent;
    margin-left: auto;
    margin-right: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    mix-blend-mode: multiply;
}

#home .logo-main:hover {
    transform: scale(1.02);
}

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

#home h1 {
    color: #e91e63;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    line-height: 1.4;
    animation: fadeInUp 1s ease 0.2s backwards;
    font-weight: 700;
}

.home-subtitle {
    color: #666;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.4s backwards;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* O nas */
#about {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 5rem 2rem;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.2), transparent);
}

#about h2 {
    color: #e91e63;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    border-bottom: 4px solid #e91e63;
    padding-bottom: 1rem;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    animation: fadeInUp 0.8s ease;
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.about-text h3 {
    color: #e91e63;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: justify;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.08);
    border-left: 4px solid #e91e63;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #e91e63;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Oferta */
#offer {
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.98) 0%, rgba(255, 255, 255, 0.98) 50%, rgba(245, 245, 245, 0.95) 100%);
    position: relative;
}

#offer > h2 {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 5rem 2rem 0 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem 2rem;
    width: 100%;
}

.service {
    animation: fadeInUp 0.6s ease backwards;
}

.service:nth-child(1) { animation-delay: 0.1s; }
.service:nth-child(2) { animation-delay: 0.2s; }
.service:nth-child(3) { animation-delay: 0.3s; }
.service:nth-child(4) { animation-delay: 0.4s; }
.service:nth-child(5) { animation-delay: 0.5s; }
.service:nth-child(6) { animation-delay: 0.6s; }

#offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.2), transparent);
}


img {
    mix-blend-mode: multiply;
}

#offer h2 {
    color: #e91e63;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 4px solid #e91e63;
    padding-bottom: 1rem;
}

.service {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
    border-top: 4px solid #e91e63;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #c2185b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.2);
}

.service:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.service:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service h3 {
    color: #e91e63;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.service p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.service li {
    padding: 0.6rem 0;
    color: #555;
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.service li:before {
    content: "✓";
    color: #e91e63;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.service:hover li {
    color: #333;
}

.service li:hover {
    color: #e91e63;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

/* Kontakt */
#contact {
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 5rem 2rem;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.2), transparent);
}

#contact h2 {
    color: #e91e63;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 4px solid #e91e63;
    padding-bottom: 1rem;
}

.contact-intro {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.contact-box {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.1);
    border-top: 4px solid #e91e63;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease backwards;
}

.contact-box:nth-child(1) { animation-delay: 0.1s; }
.contact-box:nth-child(2) { animation-delay: 0.2s; }
.contact-box:nth-child(3) { animation-delay: 0.3s; }

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #c2185b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.2);
}

.contact-box:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.contact-box:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
}

.contact-box h3 {
    color: #e91e63;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-details {
    color: #555;
}

.contact-details p {
    color: #555;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details strong {
    color: #333;
    font-weight: 600;
}

.contact-box a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-box a:hover {
    color: #c2185b;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem;
    }

    .nav-logo {
        height: 40px;
        width: auto;
    }

    .burger-menu {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        box-shadow: -2px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    nav ul.active {
        right: 0;
    }

    nav li {
        width: 100%;
    }

    nav a {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        width: 100%;
    }

    nav a::after {
        display: none;
    }

    nav a:hover {
        background: rgba(233, 30, 99, 0.1);
    }

    #home h1 {
        font-size: 1.8rem;
    }

    #home .logo-main {
        width: 90%;
    }

    .home-subtitle {
        font-size: 1.1rem;
    }

    section {
        padding: 3rem 1rem;
    }

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

    .service h3 {
        font-size: 1.3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem 4rem 1rem;
        gap: 1.5rem;
    }

    .service {
        padding: 2rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    #offer > h2 {
        padding: 4rem 1rem 0 1rem;
    }

    .about-container {
        padding: 4rem 1rem;
    }

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

    .about-icon {
        font-size: 3rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-text p {
        text-align: left;
        font-size: 1rem;
    }

    .feature-item {
        padding: 1.2rem;
    }

    .contact-container {
        padding: 4rem 1rem;
    }

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

    .contact-box {
        padding: 2rem;
    }

    .contact-icon {
        font-size: 2.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

@media (min-width: 1025px) {
    .about-content {
        gap: 5rem;
    }
}