:root {
    --primary-color: #9b51e0;
    --secondary-color: #3f51b5;
    --background-light: #f8f8f8;
    --text-dark: #333;
    --text-light: #fff;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto Condensed", sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 100;
    font-style: normal;
}

section {
    scroll-margin-top: 80px;
}



/* Typografia */
h1, h2, h3 {
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

h1 {
    font-family: "Antonio", serif;
    font-size: clamp(20px, 5vw, 60px);
    font-weight: bold;
    color: var(--text-light);
}

h2 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    color: #5a5a5a; 
}

h3 { 
    font-size: 1.5rem; 
}

.author {
    font-family: "Roboto Condensed", sans-serif;
    font-size: clamp(10px, 5vw, 20px);
    letter-spacing: 0.1em;
}

.web-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

/* ===================================
   NOWOCZESNY HEADER
   =================================== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(155, 81, 224, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

/* Header przy scrollu */
header.scrolled {
    padding: 12px 50px;
    background: rgba(15, 12, 41, 0.98);
    border-bottom: 1px solid rgba(155, 81, 224, 0.4);
    box-shadow: 0 10px 40px rgba(155, 81, 224, 0.2);
}

/* Animowane tło header */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(155, 81, 224, 0.05) 50%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: header-shimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes header-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Logo */
.logo {
    width: 80px;
    height: auto;
    position: relative;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.logo a {
    display: block;
    position: relative;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(155, 81, 224, 0.4));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 8px 25px rgba(155, 81, 224, 0.6));
}

/* Nawigacja */
nav {
    font-size: 15px;
    letter-spacing: 1.5px;
    font-weight: 500;
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style-type: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Gradient hover effect */
nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.2), rgba(63, 81, 181, 0.2));
    transition: left 0.4s ease;
    z-index: -1;
}

nav ul li a:hover::before {
    left: 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9b51e0, #00fff3);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(155, 81, 224, 0.8);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 80%;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ffffff;
    background: rgba(155, 81, 224, 0.15);
    text-shadow: 0 0 10px rgba(155, 81, 224, 0.5);
}

/* Ikony społecznościowe */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 81, 224, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #9b51e0, #00fff3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    color: #ffffff;
    border-color: #00fff3;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(155, 81, 224, 0.4);
}

.social-icon i {
    z-index: 1;
}

/* Menu hamburgerowe */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: rgba(155, 81, 224, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(155, 81, 224, 0.3);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(155, 81, 224, 0.2);
    border-color: rgba(155, 81, 224, 0.5);
    transform: scale(1.05);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #9b51e0, #00fff3);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(155, 81, 224, 0.5);
}

/* Hamburger aktywny (X) */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: linear-gradient(90deg, #00fff3, #9b51e0);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: linear-gradient(90deg, #00fff3, #9b51e0);
}

/* Responsywność */
@media (max-width: 1154px) {
    header {
        padding: 15px 30px;
    }
    
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(15, 12, 41, 0.98);
        backdrop-filter: blur(20px);
        display: none;
        padding: 20px 0;
        border-bottom: 1px solid rgba(155, 81, 224, 0.3);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        animation: slideDown 0.4s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    nav ul li {
        width: 100%;
        max-width: 300px;
        margin: 5px 0;
    }
    
    nav ul li a {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
        font-size: 15px;
        border-radius: 12px;
    }
    
    nav ul li a::after {
        height: 3px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 20px;
    }
    
    header.scrolled {
        padding: 10px 20px;
    }
    
    .logo {
        width: 70px;
    }
    
    nav {
        top: 62px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Dodatkowe efekty */

/* Glow effect dla aktywnego linku */
nav ul li a.active {
    position: relative;
}

nav ul li a.active::before {
    left: 0;
}

/* Pulsujący efekt dla social icons */
@keyframes pulse-social {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(155, 81, 224, 0.7);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(155, 81, 224, 0);
    }
}

.social-icon:hover {
    animation: pulse-social 1.5s infinite;
}

/* Animacja wejścia menu mobilnego */
nav.active ul li {
    animation: fadeInItem 0.5s ease-out backwards;
}

nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
nav.active ul li:nth-child(2) { animation-delay: 0.15s; }
nav.active ul li:nth-child(3) { animation-delay: 0.2s; }
nav.active ul li:nth-child(4) { animation-delay: 0.25s; }
nav.active ul li:nth-child(5) { animation-delay: 0.3s; }
nav.active ul li:nth-child(6) { animation-delay: 0.35s; }
nav.active ul li:nth-child(7) { animation-delay: 0.4s; }
nav.active ul li:nth-child(8) { animation-delay: 0.45s; }
nav.active ul li:nth-child(9) { animation-delay: 0.5s; }

@keyframes fadeInItem {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}







/* ===================================
   NOWOCZESNA SEKCJA HERO
   =================================== */

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
    overflow: hidden;
}

/* Animowane tło z particles */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 70% 60%, rgba(155, 81, 224, 0.4), transparent),
        radial-gradient(1px 1px at 40% 80%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 90% 30%, rgba(0, 255, 243, 0.3), transparent),
        radial-gradient(1px 1px at 20% 70%, rgba(63, 81, 181, 0.3), transparent),
        radial-gradient(2px 2px at 50% 10%, rgba(255, 255, 255, 0.25), transparent);
    background-size: 200% 200%;
    animation: stars-move 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Gradient orbs w tle */
.hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Dodatkowa kula po lewej */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 243, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 25s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

.hero-content, 
.hero-image {
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-content {
    max-width: 650px;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tytuł H1 */
.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: "Antonio", serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
    position: relative;
    text-shadow: 0 5px 30px rgba(155, 81, 224, 0.5);
}

/* Efekt gradient na wybranych słowach */
.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, #00fff3, #9b51e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 255, 243, 0.3));
}

/* Animowana linia pod tytułem */
.hero-content h1::after {
    content: '';
    display: block;
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, #9b51e0, #00fff3);
    margin-top: 20px;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(155, 81, 224, 0.6);
    animation: expand-line 3s ease-in-out infinite;
}

/* Subtitle */
.hero-content .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 25px 0;
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-weight: 300;
    max-width: 600px;
}

/* Author */
.hero-content .author {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #00fff3;
    margin: 20px 0 40px;
    letter-spacing: 2px;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0, 255, 243, 0.5);
}

/* CTA Button - ulepszony */
.hero-content .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    padding: 18px 40px;
    border-radius: 50px;
    border: 2px solid rgba(155, 81, 224, 0.5);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(155, 81, 224, 0.4);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 10px 40px rgba(155, 81, 224, 0.4);
        border-color: rgba(155, 81, 224, 0.5);
    }
    50% { 
        box-shadow: 0 15px 60px rgba(155, 81, 224, 0.6);
        border-color: rgba(0, 255, 243, 0.8);
    }
}

.cta-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.5s ease;
}

.cta-button:hover:before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(155, 81, 224, 0.6);
    border-color: #00fff3;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-button i,
.cta-button .icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i,
.cta-button:hover .icon {
    transform: translateX(5px);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    max-width: 60%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(155, 81, 224, 0.4));
    animation: float-image 6s ease-in-out infinite;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

@keyframes float-image {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-30px) rotate(2deg); 
    }
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Dekoracyjny gradient ring wokół obrazka */
.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: conic-gradient(
        from 0deg,
        #9b51e0,
        #00fff3,
        #3f51b5,
        #9b51e0
    );
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate-gradient 10s linear infinite;
    z-index: 1;
}

@keyframes rotate-gradient {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    filter: drop-shadow(0 0 10px rgba(155, 81, 224, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* Wave na dole hero */
.hero .wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    line-height: 0;
    pointer-events: none;
    z-index: 3;
}

.hero .wave path {
    fill: #f8f8f8;
    filter: drop-shadow(0 -5px 10px rgba(0, 0, 0, 0.1));
}

/* Floating particles (opcjonalne) */
.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 15s linear infinite;
    z-index: 1;
}

.hero-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.hero-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.hero-particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 10s;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Responsywność */
@media (max-width: 1154px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        padding: 100px 30px 50px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        order: 2;
        margin-top: 40px;
    }
    
    .hero-content h1::after {
        margin: 20px auto 0;
    }
    
    .hero-content .subtitle,
    .hero-content .author {
        text-align: center;
    }
    
    .hero-image {
        order: 1;
        margin-top: 60px;
    }
    
    .hero-image img {
        max-width: 56%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 40px;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
        margin: 20px 0;
    }
    
    .hero-content .author {
        font-size: 1rem;
        margin: 15px 0 30px;
    }
    
    .cta-button {
        padding: 15px 32px;
        font-size: 0.95rem;
    }
    
    .hero-image img {
        max-width: 64%;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .hero .wave {
        height: 60px;
    }
}

/* Dodatkowe micro-animacje */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.hero-content h1:hover {
    animation: shimmer 3s infinite;
    background: linear-gradient(
        90deg,
        #fff 0%,
        #00fff3 50%,
        #fff 100%
    );
    background-size: 1000px 100%;
    -webkit-background-clip: text;
    background-clip: text;
}

/* Menu hamburgerowe */
:root {
    /* Zmienne CSS dla łatwiejszej konserwacji */
    --hamburger-width: 25px;
    --hamburger-height: 3px;
    --hamburger-margin: 2px;
    --hamburger-color: #fff;
    --nav-bg-color: rgba(0, 0, 0, 0.9);
    --nav-font-size: 18px;
    --nav-margin: 15px;
    --nav-padding: 20px;
    --header-height: 70px; /* Dostosuj do wysokości twojego headera */
}

/* Style dla menu hamburgerowego */
.hamburger {
    display: none; /* Ukryte domyślnie */
    flex-direction: column; /* Ustawia elementy w kolumnie */
    cursor: pointer; /* Zmiana kursora na wskaźnik */
    padding: 10px; /* Padding wokół hamburgera */
    z-index: 1001; /* Ustawia nad innymi elementami */
}

.hamburger span {
    width: var(--hamburger-width); /* Szerokość każdej linii */
    height: var(--hamburger-height); /* Wysokość każdej linii */
    background-color: var(--hamburger-color); /* Kolor linii */
    margin: var(--hamburger-margin) 0; /* Odstęp między liniami */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Płynna animacja */
}

/* Stan aktywny hamburgera (przekształca w X) */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0; /* Ukrywa środkową linię */
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Style responsywne dla ekranów mniejszych niż 900px */
@media (max-width: 1154px) {
    .hamburger {
        display: flex; /* Pokazuje menu hamburgerowe */
    }

    nav {
        position: fixed; /* Ustawia na stałe na górze */
        top: var(--header-height); /* Dostosowuje do wysokości nagłówka */
        left: 0;
        width: 100%; /* Pełna szerokość nawigacji */
        background-color: var(--nav-bg-color); /* Kolor tła nawigacji */
        display: none; /* Ukryte domyślnie */
        padding: var(--nav-padding) 0; /* Padding w nawigacji */
    }

    nav.active {
        display: block; /* Pokazuje nawigację, gdy aktywna */
    }

    nav ul {
        flex-direction: column; /* Ustawia elementy w kolumnie */
        align-items: center; /* Centruje elementy menu */
    }

    nav ul li {
        margin: var(--nav-margin) 0; /* Odstęp między elementami menu */
    }

    nav ul li a {
        font-size: var(--nav-font-size); /* Rozmiar czcionki dla linków menu */
    }
}

h1 {
  font-size: clamp(20px, 3vw, 60px);
  font-family: "Antonio", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  margin-bottom: 20px;
  color: #fff;
}  
        
h2, h3 {
    margin-bottom: 20px;
    color: #333;
    align-content: center;
}

h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

.author {
    color: rgb(255 255 255 / 90%);
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300; /* or any other appropriate value */
    font-style: normal;
    letter-spacing: clamp(0.1em, 0.15em, 0.2em);
    font-size: clamp(10px, 5vw, 25px);
    margin-bottom: 30px;
}

/* Ulepszony przycisk CTA */
.cta-button {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: linear-gradient(45deg, #9b51e0, #3f51b5);
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.4s ease;
}

.cta-button:hover:before {
  left: 100%;
}

.cta-button:hover {
  box-shadow: 0 5px 15px rgba(155, 81, 224, 0.4);
  transform: translateY(-3px);
}

.cta-button:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(155, 81, 224, 0.4);
}

.cta-button span {
  z-index: 1;
}

.cta-button .icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.cta-button:hover .icon {
  transform: translateY(3px);
}
/* ===================================
   NOWOCZESNA SEKCJA OFERTA
   =================================== */

.oferta {
    position: relative;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
    padding: 100px 0 120px;
    overflow: hidden;
}

/* Animowane tło z kształtami */
.oferta::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-shape 25s ease-in-out infinite;
    pointer-events: none;
}

.oferta::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(63, 81, 181, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-shape 20s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -30px) rotate(120deg); }
    66% { transform: translate(-30px, 40px) rotate(240deg); }
}

.oferta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.oferta h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #9b51e0, #3f51b5);
    margin: 25px auto 0;
    border-radius: 3px;
    animation: expand-line 2s ease-in-out infinite;
}

.oferta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 80px auto 60px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.oferta-item {
    background: white;
    border-radius: 25px;
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

/* Gradient border effect */
.oferta-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, #9b51e0, #3f51b5, #9b51e0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.oferta-item:hover::before {
    opacity: 1;
}

/* Dekoracyjny element w rogu */
.oferta-item::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.1), transparent);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.oferta-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(155, 81, 224, 0.2);
}

.oferta-item:hover::after {
    transform: scale(1.5);
    opacity: 0.5;
}

/* Ikona */
.oferta-item .icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.oferta-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(155, 81, 224, 0.3));
    transition: transform 0.4s ease;
}

.oferta-item:hover .icon img {
    transform: scale(1.15) rotate(5deg);
}

/* Licznik oferty */
.offer-number {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(155, 81, 224, 0.4);
    z-index: 2;
    animation: pulse-number 2s ease-in-out infinite;
}

@keyframes pulse-number {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.oferta-item:nth-child(1) .offer-number { animation-delay: 0s; }
.oferta-item:nth-child(2) .offer-number { animation-delay: 0.3s; }
.oferta-item:nth-child(3) .offer-number { animation-delay: 0.6s; }

/* Nagłówek */
.oferta-item h3 {
    font-size: 1.8rem;
    margin: 20px 0 15px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Opis */
.oferta-item > p {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Lista */
.oferta-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.oferta-item .oferta-list li {
    position: relative;
    padding: 15px 15px 15px 50px;
    margin-bottom: 12px;
    color: #2c3e50;
    line-height: 1.6;
    font-weight: 400;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.05), rgba(63, 81, 181, 0.03));
    border-radius: 12px;
    border-left: 3px solid #9b51e0;
    transition: all 0.3s ease;
    z-index: 2;
}

.oferta-item .oferta-list li:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.1), rgba(63, 81, 181, 0.06));
    border-left-width: 5px;
}

.oferta-item .oferta-list li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(155, 81, 224, 0.3);
}

.oferta-item .oferta-list li strong {
    color: #9b51e0;
    font-weight: 600;
}

/* Sekcja kontaktowa na dole */
.contact-info {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 50px 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #9b51e0, #3f51b5, #9b51e0);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-info h3 {
    color: #2c3e50;
    font-size: 1.9rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.oferta-note {
    color: #495057 !important;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 400;
    margin: 0;
}

/* Przycisk CTA w contact-info */
.contact-info-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(155, 81, 224, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-info-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-info-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(155, 81, 224, 0.4);
}

.contact-info-cta:hover::before {
    left: 100%;
}

.contact-info-cta i {
    font-size: 1.2rem;
}

/* Responsywność */
@media (max-width: 1024px) {
    .slider-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .oferta {
        padding: 60px 0 80px;
    }
    
    .oferta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .oferta-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 50px auto 40px;
    }
    
    .oferta-item {
        padding: 40px 25px;
    }
    
    .oferta-item .icon {
        width: 70px;
        height: 70px;
    }
    
    .offer-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 20px;
        right: 20px;
    }
    
    .oferta-item h3 {
        font-size: 1.5rem;
    }
    
    .oferta-item > p {
        font-size: 1rem;
    }
    
    .oferta-item .oferta-list li {
        padding: 12px 12px 12px 45px;
        font-size: 0.95rem;
    }
    
    .oferta-item .oferta-list li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
        left: 12px;
    }
    
    .contact-info {
        padding: 35px 25px;
        margin: 50px auto 0;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .oferta-note {
        font-size: 1rem;
    }
    
    .contact-info-cta {
        padding: 12px 28px;
        font-size: 1rem;
    }
}

/* Animacje wejścia dla elementów */
.oferta-item {
    animation: fadeInUp 0.8s ease-out backwards;
}

.oferta-item:nth-child(1) { animation-delay: 0.1s; }
.oferta-item:nth-child(2) { animation-delay: 0.3s; }
.oferta-item:nth-child(3) { animation-delay: 0.5s; }


/* ===================================
   NOWOCZESNA SEKCJA O MNIE
   =================================== */

.about-me {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    padding: 0;
}

.about-me .wave path {
    fill: #0f0c29; /* Ciemny kolor cennika */
}

/* Animowane tło z kulami */
.about-me::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 20s ease-in-out infinite;
    pointer-events: none;
}

.about-me::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(63, 81, 181, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 15s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Dodatkowe elementy dekoracyjne */
.about-me-content::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(155, 81, 224, 0.1), transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    pointer-events: none;
}

.about-me-content::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 120px;
    height: 120px;
    background: linear-gradient(225deg, rgba(63, 81, 181, 0.15), transparent);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: morph 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.about-me-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 30px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Lewa strona - zdjęcie/grafika */
.about-me-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-me-image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
}

.about-me-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #9b51e0, #3f51b5);
    border-radius: 30px;
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.about-me-image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.about-me-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.2), rgba(63, 81, 181, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-me-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-me-image:hover img {
    transform: scale(1.05);
}

/* Ikona aparatu jako placeholder */
.camera-icon {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Prawa strona - tekst */
.about-me-text {
    color: rgba(255, 255, 255, 0.9);
}

.about-me-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.about-me-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #9b51e0, #3f51b5);
    border-radius: 3px;
    animation: expand-line 2s ease-in-out infinite;
}

@keyframes expand-line {
    0%, 100% { width: 100px; }
    50% { width: 150px; }
}

.intro {
    font-size: 1.4rem;
    margin: 40px 0 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    padding-left: 20px;
    border-left: 4px solid #9b51e0;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight {
    color: #00fff3;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(0, 255, 243, 0.3);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00fff3, transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    text-align: justify;
    animation: fadeInUp 1s ease-out backwards;
}

.about-text p:nth-child(1) { animation-delay: 0.2s; }
.about-text p:nth-child(2) { animation-delay: 0.4s; }
.about-text p:nth-child(3) { animation-delay: 0.6s; }
.about-text p:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Statystyki/osiągnięcia */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(155, 81, 224, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(155, 81, 224, 0.5);
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #9b51e0;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(155, 81, 224, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: rgba(155, 81, 224, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(155, 81, 224, 0.3);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(155, 81, 224, 0.3); }
    50% { border-color: rgba(155, 81, 224, 0.6); }
}

.cta-text a {
    color: #00fff3;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.cta-text a::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta-text a:hover {
    color: #9b51e0;
    text-shadow: 0 0 10px rgba(155, 81, 224, 0.5);
}

.cta-text a:hover::after {
    transform: translateX(5px);
}

/* Fala na dole sekcji */
.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    line-height: 0;
    pointer-events: none;
    z-index: 3;
}

.wave path {
    fill: #0f0c29; /* Ciemny kolor z gradientu Cennika */
}

/* Responsywność */
@media (max-width: 1024px) {
    .about-me-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 30px;
    }
    
    .about-me-visual {
        order: -1;
    }
    
    .about-me-image-wrapper {
        width: 350px;
        height: 450px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-me-content {
        padding: 60px 20px;
    }
    
    .about-me-image-wrapper {
        width: 300px;
        height: 400px;
    }
    
    .about-me-content h2 {
        font-size: 2rem;
    }
    
    .intro {
        font-size: 1.2rem;
        margin: 30px 0 20px;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .camera-icon {
        font-size: 80px;
    }
}



/* ===================================
   NOWOCZESNA SEKCJA CENNIK
   =================================== */

.cennik {
    position: relative;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

/* Animowane tło z gwiazdami/kropkami */
.cennik::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(155, 81, 224, 0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(63, 81, 181, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(1px 1px at 33% 85%, rgba(155, 81, 224, 0.3), transparent);
    background-size: 200% 200%;
    animation: stars-move 20s linear infinite;
    pointer-events: none;
}

@keyframes stars-move {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Gradient kule w tle */
.cennik::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 25s ease-in-out infinite;
    pointer-events: none;
}

.cennik-wrapper {
    position: relative;
    z-index: 2;
}

.cennik h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
    animation: fadeInDown 1s ease-out;
    text-shadow: 0 5px 20px rgba(155, 81, 224, 0.3);
}

.cennik h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #9b51e0, #00fff3);
    margin: 25px auto 0;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(155, 81, 224, 0.5);
}

/* Subtitle */
.cennik-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.package {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Gradient border effect */
.package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #9b51e0, #00fff3, #3f51b5);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradient-rotate 3s linear infinite;
}

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.package:hover::before {
    opacity: 1;
}

/* Świecący efekt w tle karty */
.package::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.package:hover::after {
    opacity: 1;
}

.package:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: rgba(155, 81, 224, 0.5);
    box-shadow: 0 30px 70px rgba(155, 81, 224, 0.4);
}

/* Featured package - środkowy */
.package.featured {
    background: rgba(155, 81, 224, 0.15);
    border: 2px solid rgba(155, 81, 224, 0.5);
    transform: scale(1.05);
}

.package.featured::before {
    opacity: 0.3;
}

.package.featured:hover {
    transform: translateY(-20px) scale(1.08);
}

/* Badge dla featured */
.package-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(155, 81, 224, 0.5);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(155, 81, 224, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 8px 30px rgba(155, 81, 224, 0.7); }
}

/* Nagłówek pakietu */
.package h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Ikona pakietu */
.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #9b51e0, #3f51b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.package:hover .package-icon {
    transform: rotateY(360deg) scale(1.1);
}

/* Lista */
.package ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.package ul li {
    padding: 15px 15px 15px 45px;
    margin-bottom: 12px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.package ul li:hover {
    background: rgba(155, 81, 224, 0.2);
    border-left-color: #00fff3;
    transform: translateX(5px);
    padding-left: 50px;
}

.package ul li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #9b51e0, #00fff3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(155, 81, 224, 0.4);
}

/* Cena */
.package .price {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 30px 0 25px;
    text-align: center;
    background: linear-gradient(135deg, #00fff3, #9b51e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(155, 81, 224, 0.5);
    filter: drop-shadow(0 5px 15px rgba(0, 255, 243, 0.3));
}

/* Przycisk */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.4);
    margin-top: auto;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 81, 224, 0.6);
    background: linear-gradient(135deg, #7e3bb8, #9b51e0);
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* Dodatkowa informacja pod pakietami */
.cennik-footer {
    text-align: center;
    margin-top: 80px;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.cennik-footer-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cennik-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(155, 81, 224, 0.5);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s ease;
}

.cennik-cta:hover {
    background: rgba(155, 81, 224, 0.3);
    border-color: #00fff3;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.4);
}

.cennik-cta i {
    font-size: 1.3rem;
}

/* Responsywność */
@media (max-width: 1024px) {
    .packages {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .package.featured {
        transform: scale(1);
    }
    
    .package.featured:hover {
        transform: translateY(-20px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .cennik {
        padding: 80px 0;
    }
    
    .cennik h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cennik-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .packages {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .package {
        padding: 35px 25px;
    }
    
    .package-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .package h3 {
        font-size: 1.7rem;
    }
    
    .package ul li {
        font-size: 1rem;
        padding: 12px 12px 12px 40px;
    }
    
    .package .price {
        font-size: 2.8rem;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cennik-footer {
        margin-top: 50px;
        padding: 30px 15px;
    }
    
    .cennik-footer-text {
        font-size: 1rem;
    }
    
    .cennik-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Animacje wejścia */
.package {
    animation: fadeInUp 0.8s ease-out backwards;
}

.package:nth-child(1) { animation-delay: 0.1s; }
.package:nth-child(2) { animation-delay: 0.3s; }
.package:nth-child(3) { animation-delay: 0.5s; }

/* ===================================
   NOWOCZESNA SEKCJA PORTFOLIO/GALERIA
   =================================== */

.gallery {
    position: relative;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 120px 0;
    overflow: hidden;
}

/* Animowane tło z particles */
.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 15% 25%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(2px 2px at 75% 65%, rgba(155, 81, 224, 0.35), transparent),
        radial-gradient(1px 1px at 45% 45%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 85% 15%, rgba(0, 255, 243, 0.3), transparent),
        radial-gradient(1px 1px at 25% 75%, rgba(63, 81, 181, 0.25), transparent);
    background-size: 200% 200%;
    animation: stars-move 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Gradient orbs */
.gallery::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 22s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.gallery-wrapper {
    position: relative;
    z-index: 2;
}

.gallery h2 {
    padding: 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
    text-shadow: 0 5px 30px rgba(155, 81, 224, 0.5);
}

.gallery h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #9b51e0, #00fff3);
    margin: 25px auto 0;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(155, 81, 224, 0.6);
}

/* Filtry kategorii */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 60px auto 80px;
    padding: 0 20px;
    max-width: 900px;
}

.filter-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(155, 81, 224, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #9b51e0, #00fff3);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300%;
    height: 300%;
}

.filter-btn:hover,
.filter-btn.active {
    color: #ffffff;
    border-color: #00fff3;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.4);
}

/* Grid galerii */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 0 30px 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out backwards;
}

/* Animacja wejścia z różnymi opóźnieniami */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }
.gallery-item:nth-child(7) { animation-delay: 0.4s; }
.gallery-item:nth-child(8) { animation-delay: 0.45s; }
.gallery-item:nth-child(9) { animation-delay: 0.5s; }

/* Gradient border effect */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #9b51e0, #00fff3, #3f51b5);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradient-rotate 3s linear infinite;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(155, 81, 224, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/* Overlay na hover */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(155, 81, 224, 0.7) 0%,
        rgba(0, 255, 243, 0.5) 100%
    );
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Ikona zoom */
.gallery-item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.gallery-item:hover .gallery-item-icon {
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
}

.gallery-item-icon i {
    font-size: 28px;
    color: white;
    text-shadow: 0 0 10px rgba(155, 81, 224, 0.8);
}

/* Lightbox (ulepszony) */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 100px rgba(155, 81, 224, 0.5);
}

/* Przycisk zamknięcia lightbox */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.6);
}

.lightbox-close i {
    font-size: 24px;
    color: white;
}

/* Navigation arrows w lightbox */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(155, 81, 224, 0.5);
}

.lightbox-nav:hover {
    background: rgba(155, 81, 224, 0.3);
    border-color: #00fff3;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav i {
    font-size: 28px;
    color: white;
}

/* Wave */
.gallery .wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    line-height: 0;
    pointer-events: none;
    z-index: 3;
}

.gallery .wave path {
    fill: #f8f8f8;
}

/* Responsywność */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 20px 60px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 80px 0;
    }
    
    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .gallery-filters {
        gap: 10px;
        margin: 40px auto 50px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        padding: 0 15px 50px;
    }
    
    .gallery-item {
        border-radius: 15px;
    }
    
    .gallery-item-icon {
        width: 60px;
        height: 60px;
    }
    
    .gallery-item-icon i {
        font-size: 24px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .gallery .wave {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   NOWOCZESNA SEKCJA RETUSZ
   =================================== */

.retusz {
    position: relative;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 50%, #f0f0f0 100%);
    padding: 100px 0 120px;
    overflow: hidden;
}

/* Animowane tło */
.retusz::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 25s ease-in-out infinite;
    pointer-events: none;
}

.retusz::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(63, 81, 181, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 20s ease-in-out infinite reverse;
    pointer-events: none;
}

.retusz h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

.retusz h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #9b51e0, #3f51b5);
    margin: 25px auto 0;
    border-radius: 3px;
    animation: expand-line 2s ease-in-out infinite;
}

/* Kontener artykułu */
.article-container {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 60px auto 80px;
    padding: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(155, 81, 224, 0.1);
}

/* Gradient header artykułu */
.article-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #9b51e0, #00fff3, #3f51b5);
    background-size: 200% 100%;
    animation: gradient-shift 4s ease infinite;
}

/* Preview sekcja */
.article-preview {
    padding: 50px 45px 30px;
}

.article-preview > p:first-child {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
    padding-left: 25px;
    border-left: 4px solid #9b51e0;
}

.article-preview > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

/* Full Article */
#fullArticle {
    display: none;
    padding: 0 45px 30px;
}

#fullArticle h4 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 40px 0 20px;
    padding-left: 20px;
    border-left: 5px solid #9b51e0;
    line-height: 1.4;
    font-weight: 700;
    position: relative;
}

#fullArticle h4::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #9b51e0, #00fff3);
    animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

#fullArticle p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #495057;
    margin-bottom: 20px;
    text-align: justify;
}

#fullArticle ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

#fullArticle ul li {
    position: relative;
    padding: 12px 15px 12px 45px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.05), rgba(63, 81, 181, 0.03));
    border-radius: 10px;
    border-left: 3px solid #9b51e0;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
}

#fullArticle ul li:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.1), rgba(63, 81, 181, 0.06));
    border-left-width: 5px;
}

#fullArticle ul li::before {
    content: '→';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9b51e0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Przycisk Read More */
.read-more-btn {
    display: block;
    width: calc(100% - 90px);
    max-width: 400px;
    margin: 30px auto;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    color: white;
    border: none;
    padding: 18px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.3);
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 81, 224, 0.5);
}

.read-more-btn::after {
    content: ' ▼';
    margin-left: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.read-more-btn.active::after {
    content: ' ▲';
    transform: rotate(180deg);
}

/* Slider Container */
.slider-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Slider - Before/After */
.slider {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    user-select: none;
    border: 2px solid rgba(155, 81, 224, 0.1);
    transition: all 0.4s ease;
    background: #000;
}

.slider:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(155, 81, 224, 0.25);
    border-color: rgba(155, 81, 224, 0.4);
}

/* Label Before/After */
.slider::before,
.slider::after {
    position: absolute;
    top: 20px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider::before {
    content: 'PRZED';
    left: 20px;
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.9), rgba(124, 59, 184, 0.9));
}

.slider::after {
    content: 'PO';
    right: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 243, 0.9), rgba(63, 81, 181, 0.9));
}

.slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    pointer-events: none;
    user-select: none;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

/* Slider Handle - nowoczesny */
.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 50%;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    border: 3px solid #9b51e0;
    box-shadow: 
        0 0 0 4px rgba(155, 81, 224, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    user-select: none;
}

.slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 
        0 0 0 6px rgba(155, 81, 224, 0.3),
        0 15px 40px rgba(155, 81, 224, 0.4);
}

.slider-handle:active {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Strzałki w handle */
.handle-left-arrow,
.handle-right-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.handle-left-arrow {
    border-right: 8px solid #9b51e0;
    left: 50%;
    transform: translateX(-12px);
}

.handle-right-arrow {
    border-left: 8px solid #9b51e0;
    right: 50%;
    transform: translateX(12px);
}

/* Slider Line */
.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #9b51e0, #00fff3, #9b51e0);
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
    box-shadow: 
        0 0 10px rgba(155, 81, 224, 0.6),
        0 0 20px rgba(0, 255, 243, 0.4);
    transition: left 0.1s ease-out;
}

/* Animacje wejścia dla sliderów */
.slider {
    animation: fadeInUp 0.8s ease-out backwards;
}

.slider:nth-child(1) { animation-delay: 0.1s; }
.slider:nth-child(2) { animation-delay: 0.2s; }
.slider:nth-child(3) { animation-delay: 0.3s; }
.slider:nth-child(4) { animation-delay: 0.4s; }
.slider:nth-child(5) { animation-delay: 0.5s; }
.slider:nth-child(6) { animation-delay: 0.6s; }

/* Responsywność */
@media (max-width: 1024px) {
    .slider-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
.slider {
        height: auto;
        aspect-ratio: 3/4;
    }
}

@media (max-width: 768px) {
    .retusz {
        padding: 60px 0 80px;
    }
    
    .retusz h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .article-container {
        margin: 40px auto 60px;
        border-radius: 20px;
    }
    
    .article-preview {
        padding: 35px 25px 25px;
    }
    
    .article-preview > p:first-child {
        font-size: 1.1rem;
        padding-left: 20px;
    }
    
    .article-preview > p {
        font-size: 1rem;
    }
    
    #fullArticle {
        padding: 0 25px 25px;
    }
    
    #fullArticle h4 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
        padding-left: 15px;
    }
    
    #fullArticle p {
        font-size: 1rem;
        text-align: left;
    }
    
    #fullArticle ul li {
        padding: 10px 12px 10px 40px;
        font-size: 0.95rem;
    }
    
    .read-more-btn {
        width: calc(100% - 50px);
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .slider-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
.slider {
        height: auto;
        aspect-ratio: 3/4;
    }
    
    .slider::before,
    .slider::after {
        font-size: 0.75rem;
        padding: 6px 15px;
        top: 15px;
    }
    
    .slider::before {
        left: 15px;
    }
    
    .slider::after {
        right: 15px;
    }
    
    .slider-handle {
        width: 45px;
        height: 45px;
    }
    
    .handle-left-arrow,
    .handle-right-arrow {
        border-top-width: 7px;
        border-bottom-width: 7px;
    }
    
    .handle-left-arrow {
        border-right-width: 7px;
    }
    
    .handle-right-arrow {
        border-left-width: 7px;
    }
}

/* Poprawki dla slidera - dodaj do istniejącego CSS */

.slider {
    cursor: ew-resize; /* Kursor na całym sliderze */
}

.slider-handle {
    cursor: ew-resize; /* Domyślny kursor */
    will-change: left; /* Optymalizacja animacji */
}

.slider-handle:active {
    cursor: grabbing;
}

.after-image {
    will-change: clip-path; /* Optymalizacja */
}

.slider-line {
    will-change: left; /* Optymalizacja */
    transition: none; /* Usuń transition dla płynniejszego ruchu */
}

/* ===================================
   ULEPSZONA SEKCJA KONTAKT - LEPSZA CZYTELNOŚĆ
   =================================== */

.contact-section {
    position: relative;
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px;
    overflow: hidden;
}

/* Animowane tło */
.contact-section::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 25s ease-in-out infinite;
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(63, 81, 181, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 20s ease-in-out infinite reverse;
    pointer-events: none;
}

.contact-container {
    position: relative;
    background: white;
    padding: 60px 50px;
    border-radius: 30px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
    overflow: hidden;
}

/* Gradient top border */
.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #9b51e0, #00fff3, #3f51b5);
    background-size: 200% 100%;
    animation: gradient-shift 4s ease infinite;
}

/* Dekoracyjny element */
.contact-container::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
}

/* Layout 2-kolumnowy */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Lewa strona - Info */
.contact-info-side {
    position: relative;
}

.contact-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.contact-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9b51e0, #00fff3);
    border-radius: 2px;
}

.contact-subtitle {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Info items - zwiększony kontrast */
.contact-info-items {
    margin-bottom: 40px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.08), rgba(63, 81, 181, 0.05));
    border-radius: 15px;
    border-left: 4px solid #9b51e0;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.12), rgba(63, 81, 181, 0.08));
    border-left-width: 6px;
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.15);
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(155, 81, 224, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-text h3 {
    color: #1a1a2e;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-text p {
    color: #2d3748;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.contact-info-text a {
    color: #9b51e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.contact-info-text a:hover {
    color: #7e3bb8;
    gap: 8px;
}

.contact-info-text a i {
    font-size: 0.9rem;
}

/* Social media */
.contact-social {
    padding: 25px;
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.08), rgba(63, 81, 181, 0.05));
    border-radius: 15px;
    margin-top: 30px;
}

.contact-social h3 {
    color: #1a1a2e;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-social-links {
    display: flex;
    gap: 15px;
}

.contact-social-link {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid rgba(155, 81, 224, 0.3);
    border-radius: 50%;
    color: #9b51e0;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #9b51e0, #00fff3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.contact-social-link:hover::before {
    width: 100%;
    height: 100%;
}

.contact-social-link:hover {
    color: white;
    border-color: #00fff3;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(155, 81, 224, 0.4);
}

.contact-social-link i {
    z-index: 1;
}

/* Prawa strona - Formularz */
.contact-form-side {
    position: relative;
}

.contact-form {
    position: relative;
}

/* Honeypot */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #1a1a2e;
    font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9b51e0;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(155, 81, 224, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #cbd5e0;
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
    font-family: inherit;
}

/* Ikony w inputach */
.form-group-icon {
    position: relative;
}

.form-group-icon i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9b51e0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.form-group-icon input {
    padding-left: 50px;
}

.form-group-icon input:focus ~ i {
    color: #7e3bb8;
    transform: translateY(-50%) scale(1.1);
}

/* Walidacja */
.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #51cf66;
    background-color: rgba(81, 207, 102, 0.05);
}

.form-group input:invalid:not(:placeholder-shown):not(:focus),
.form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.05);
}

/* reCAPTCHA */
.g-recaptcha {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

/* Info text */
.contact-container p:not(.contact-subtitle):not(.contact-info-text p) {
    text-align: center;
    color: #4a5568;
    font-size: 0.95rem;
    margin: 20px 0;
    font-weight: 500;
}

/* Submit button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 81, 224, 0.5);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.submit-btn i {
    font-size: 1.2rem;
}

/* Responsywność */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-side {
        order: 2;
    }
    
    .contact-form-side {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 15px;
        min-height: auto;
    }
    
    .contact-container {
        padding: 40px 25px;
    }
    
    .contact-container h2 {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-icon-wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 18px;
    }
    
    .submit-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* ===================================
   MODAL - POPRAWKA WIDOCZNOŚCI
   =================================== */

.modal {
    display: none; /* UKRYJ DOMYŚLNIE */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    justify-content: center;
    align-items: center;
}

/* Pokaż modal tylko gdy ma klasę aktywną */
.modal.show {
    display: flex !important;
}

.modal-content {
    position: relative;
    background: white;
    margin: auto;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideDown 0.4s ease;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal.success .modal-content::before {
    background: linear-gradient(135deg, #51cf66, #37b24d);
}

.modal.success .modal-content::after {
    content: '✓';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

.modal.error .modal-content::before {
    background: linear-gradient(135deg, #ff6b6b, #fa5252);
}

.modal.error .modal-content::after {
    content: '✕';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: translateX(-50%) scale(0);
    }
    to {
        transform: translateX(-50%) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#modalMessage {
    margin: 60px 0 30px;
    font-size: 1.15rem;
    color: #2d3748;
    line-height: 1.6;
    font-weight: 500;
}

.close-btn {
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155, 81, 224, 0.4);
}

/* Responsywność */
@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        padding: 40px 25px;
        width: 85%;
    }
    
    #modalMessage {
        font-size: 1rem;
        margin: 50px 0 25px;
    }
    
    .close-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}
/* ===================================
   NOWOCZESNA SEKCJA MAPA GOOGLE
   =================================== */

.mapa-google {
    position: relative;
    width: 100%;
    min-height: 700px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

/* Animowane tło z particles */
.mapa-google::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(155, 81, 224, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(63, 81, 181, 0.25), transparent);
    background-size: 200% 200%;
    animation: stars-move 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.mapa-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 700px;
    padding: 80px 0;
}

/* Nagłówek sekcji */
.mapa-google h2 {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 10;
    background: none;
    color: #ffffff;
    padding: 0 30px 60px;
    border-radius: 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 5px 30px rgba(155, 81, 224, 0.5);
    animation: fadeInDown 1s ease-out;
}

.mapa-google h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #9b51e0, #00fff3);
    margin: 25px auto 0;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(155, 81, 224, 0.6);
}

/* Wrapper dla mapy i info */
.mapa-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Info box po lewej */
.mapa-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px 40px;
    border: 2px solid rgba(155, 81, 224, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.mapa-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #9b51e0, #00fff3, #3f51b5);
    background-size: 200% 100%;
    animation: gradient-shift 4s ease infinite;
}

.mapa-info h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mapa-info h3 i {
    font-size: 2.5rem;
    color: #00fff3;
    filter: drop-shadow(0 0 10px rgba(0, 255, 243, 0.5));
}

.mapa-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 4px solid #9b51e0;
    transition: all 0.3s ease;
}

.mapa-info-item:hover {
    background: rgba(155, 81, 224, 0.1);
    transform: translateX(8px);
    border-left-width: 6px;
}

.mapa-info-item i {
    font-size: 1.5rem;
    color: #00fff3;
    min-width: 30px;
    margin-top: 3px;
    filter: drop-shadow(0 0 8px rgba(0, 255, 243, 0.4));
}

.mapa-info-item div {
    flex: 1;
}

.mapa-info-item strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.mapa-info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.mapa-info-item a {
    color: #00fff3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mapa-info-item a:hover {
    color: #9b51e0;
    text-shadow: 0 0 10px rgba(155, 81, 224, 0.5);
}

.mapa-info-item a i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mapa-info-item a:hover i {
    transform: translateX(3px);
}

/* Social links w info */
.mapa-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(155, 81, 224, 0.2);
}

.mapa-social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(155, 81, 224, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mapa-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #9b51e0, #00fff3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.mapa-social-link:hover::before {
    width: 100%;
    height: 100%;
}

.mapa-social-link:hover {
    color: #ffffff;
    border-color: #00fff3;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(155, 81, 224, 0.4);
}

/* Iframe mapy */
.mapa-frame {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(155, 81, 224, 0.3);
}

.mapa-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(135deg, #9b51e0, #00fff3, #3f51b5);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.mapa-frame:hover::before {
    opacity: 1;
}

.mapa-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3) contrast(1.1);
    transition: filter 0.4s ease;
}

.mapa-frame:hover iframe {
    filter: grayscale(0) contrast(1);
}

/* Godziny otwarcia */
.mapa-hours {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(155, 81, 224, 0.2);
}

.mapa-hours h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mapa-hours h4 i {
    color: #00fff3;
    filter: drop-shadow(0 0 8px rgba(0, 255, 243, 0.4));
}

.mapa-hours p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
}

/* CTA Button */
.mapa-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.4);
    position: relative;
    overflow: hidden;
}

.mapa-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mapa-cta:hover::before {
    left: 100%;
}

.mapa-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 81, 224, 0.6);
}

.mapa-cta i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mapa-cta:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* Responsywność */
@media (max-width: 1024px) {
    .mapa-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mapa-frame {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .mapa-google {
        min-height: auto;
    }
    
    .mapa-container {
        min-height: auto;
        padding: 60px 0;
    }
    
    .mapa-google h2 {
        font-size: 2rem;
        padding: 0 20px 40px;
    }
    
    .mapa-wrapper {
        padding: 0 20px;
        gap: 25px;
    }
    
    .mapa-info {
        padding: 35px 25px;
    }
    
    .mapa-info h3 {
        font-size: 1.6rem;
    }
    
    .mapa-info h3 i {
        font-size: 2rem;
    }
    
    .mapa-info-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .mapa-info-item strong {
        font-size: 1rem;
    }
    
    .mapa-info-item p {
        font-size: 0.95rem;
    }
    
    .mapa-social {
        gap: 12px;
    }
    
    .mapa-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .mapa-frame {
        height: 400px;
    }
    
    .mapa-hours {
        padding: 20px;
    }
    
    .mapa-hours h4 {
        font-size: 1.1rem;
    }
    
    .mapa-cta {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
        font-size: 1rem;
    }
}


/* ===================================
   NOWOCZESNY FOOTER
   =================================== */

.site-footer {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    padding: 80px 0 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

/* Animowane tło */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 70% 60%, rgba(155, 81, 224, 0.2), transparent),
        radial-gradient(2px 2px at 40% 80%, rgba(0, 255, 243, 0.15), transparent);
    background-size: 200% 200%;
    animation: stars-move 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Gradient top border */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #9b51e0, #00fff3, #3f51b5);
    background-size: 200% 100%;
    animation: gradient-shift 4s ease infinite;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px 60px;
    position: relative;
    z-index: 2;
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #9b51e0, #00fff3);
    border-radius: 2px;
}

/* Sekcja O nas */
.footer-section:first-child {
    max-width: 350px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(155, 81, 224, 0.4));
    transition: filter 0.3s ease;
}

.footer-logo img:hover {
    filter: drop-shadow(0 8px 25px rgba(155, 81, 224, 0.6));
}

/* Linki */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.footer-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #9b51e0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-section ul li:hover::before {
    color: #00fff3;
    transform: translateX(3px);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #00fff3;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 255, 243, 0.5);
}

/* Kontakt w footer */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid #9b51e0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(155, 81, 224, 0.1);
    transform: translateX(5px);
    border-left-width: 5px;
}

.footer-contact-item i {
    color: #00fff3;
    font-size: 1.2rem;
    min-width: 25px;
    margin-top: 2px;
    filter: drop-shadow(0 0 8px rgba(0, 255, 243, 0.4));
}

.footer-contact-item div {
    flex: 1;
}

.footer-contact-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-item a:hover {
    color: #00fff3;
}

/* Social icons w footer */
.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(155, 81, 224, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #9b51e0, #00fff3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    color: #ffffff;
    border-color: #00fff3;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(155, 81, 224, 0.4);
}

.social-icon i {
    z-index: 1;
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(155, 81, 224, 0.2);
    margin-top: 20px;
}

.footer-newsletter h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-newsletter h4 i {
    color: #00fff3;
    filter: drop-shadow(0 0 8px rgba(0, 255, 243, 0.4));
}

.footer-newsletter p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(155, 81, 224, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00fff3;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 255, 243, 0.2);
}

.newsletter-form button {
    padding: 12px 25px;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155, 81, 224, 0.4);
}

/* Footer bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(155, 81, 224, 0.2);
    text-align: center;
    padding: 25px 30px;
    font-size: 13px;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: #00fff3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #9b51e0;
    text-shadow: 0 0 10px rgba(155, 81, 224, 0.5);
}

/* Copyright z ikoną serca */
.footer-bottom p::before {
    content: '© ';
}

.footer-made-with {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.footer-made-with i {
    color: #ff6b6b;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

/* Scroll to top w footer */
.footer-scroll-top {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.4);
}

.footer-scroll-top:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 40px rgba(155, 81, 224, 0.6);
}

/* Responsywność */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px 50px;
    }
    
    .footer-section:first-child {
        max-width: 100%;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-contact-item {
        padding: 12px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom {
        padding: 20px 15px;
        font-size: 12px;
    }
    
    .footer-scroll-top {
        top: -20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Scroll to the top button */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #9b51e0;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: #8a2be2;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.scroll-to-top.visible {
    display: flex;
}

/* Cookie */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.cookie-button {
    background-color: #9b51e0;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-button:hover {
    background-color: #8a2be2;
}

.cookie-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
}

.cookie-close:hover {
    color: #9b51e0;
}

.cookie-content a {
    color: #9b51e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.cookie-content a:hover {
    color: #8a2be2;
    text-decoration: underline;
}

/* article */
.article-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: "Roboto Condensed", sans-serif;
    color: #2c3e50;
    max-width: 1024px;
    margin: 0 auto 20px;
    padding: 20px;
}

.article-container h1 {
    color: #2c3e50;
    text-align: center;
    padding: 20px;
    border-bottom: 3px solid #9b51e0;
    font-size: 2.6em;
}

.article-preview {
    font-family: "Roboto Condensed", sans-serif;
 letter-spacing: 0.03em;
    padding: 15px;
    font-weight: 300;
    text-align: left;
    color: #000;
}

.section {
    padding: 20px;
    margin-bottom: 10px;
}

.section h2 {
    color: #34495e;
    margin-bottom: 15px;
    border-left: 5px solid #9b51e0;
    padding-left: 15px;
    font-size: 2.5em;
}

#fullArticle p {
    margin-bottom: 15px;
    text-align: left;
    color: #000;
    font-weight: 300;
     letter-spacing: 0.03em;
}

#fullArticle ul {
    margin: 0 0 15px 50px;
}

#fullArticle h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 40px 0 0.75rem;
    font-weight: 600;
    color: #333;
}

.read-more-btn {
    display: block;
    width: 100%;
    background-color: #9b51e0;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.read-more-btn:hover {
    background-color: #ae5bfa;
}

.full-article {
    display: none;
    margin-top: 20px;
}

@media screen and (max-width: 600px) {
    body {
        padding: 0;
    }

    .article-container h1 {
        font-size: 2em;
    }
}

/* Dodaj te style na końcu obecnego pliku style.css */

/* Semantyczne poprawki dla hero */
.subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0 20px;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

/* Breadcrumbs (opcjonalne - jeśli chcesz dodać) */
.breadcrumbs {
    padding: 15px 50px;
    background-color: #f8f8f8;
    font-size: 14px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li + li:before {
    content: "›";
    padding: 0 10px;
    color: #999;
}

.breadcrumbs a {
    color: #9b51e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #7a3eb8;
    text-decoration: underline;
}

.breadcrumbs li:last-child {
    color: #666;
}

/* Poprawki dla lepszej dostępności */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #9b51e0;
    outline-offset: 2px;
}

/* Skip to main content link (dostępność) */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 10px;
    background-color: #9b51e0;
    color: white;
    text-decoration: none;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}

/* Lepsza widoczność linków w tekście */
.about-text a,
.oferta-note a,
.cta-text a {
    color: #9b51e0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.about-text a:hover,
.oferta-note a:hover,
.cta-text a:hover {
    color: #7a3eb8;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .subtitle {
        font-size: 1rem;
        margin: 15px 0;
    }
    
    .breadcrumbs {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .breadcrumbs li + li:before {
        padding: 0 5px;
    }
}

/* Poprawki dla artykułu (lepsze nagłówki semantyczne) */
.article-container h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #9b51e0;
    line-height: 1.4;
}

/* Lepsza struktura dla list w artykule */
.article-container ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.article-container ul li {
    margin-bottom: 10px;
    color: #333;
}

/* Poprawki dla formularza (lepsza dostępność) */
.form-group label {
    cursor: pointer;
}

.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ddd;
}

.form-group input:invalid:focus,
.form-group textarea:invalid:focus {
    border-color: #ff6b6b;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #51cf66;
}

/* Komunikaty walidacji */
.error-message {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Loading state dla przycisku */
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-btn.loading:after {
    content: "...";
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: "."; }
    40% { content: ".."; }
    60%, 100% { content: "..."; }
}

/* ===================================
   NOWOCZESNA SEKCJA FAQ
   =================================== */

.faq-section {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Animowane tło z gwiazdkami */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 15% 25%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 65% 75%, rgba(155, 81, 224, 0.3), transparent),
        radial-gradient(1px 1px at 45% 55%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 85% 15%, rgba(0, 255, 243, 0.25), transparent),
        radial-gradient(1px 1px at 25% 85%, rgba(63, 81, 181, 0.2), transparent);
    background-size: 200% 200%;
    animation: stars-move 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Gradient orbs */
.faq-section::after {
    content: '';
    position: absolute;
    top: -25%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    text-shadow: 0 5px 30px rgba(155, 81, 224, 0.5);
    animation: fadeInDown 1s ease-out;
}

.faq-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #9b51e0, #00fff3);
    margin: 25px auto 0;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(155, 81, 224, 0.6);
}

/* Subtitle */
.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(155, 81, 224, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    border-color: rgba(155, 81, 224, 0.4);
    box-shadow: 0 15px 50px rgba(155, 81, 224, 0.2);
    transform: translateY(-3px);
}

.faq-item.active {
    border-color: rgba(0, 255, 243, 0.6);
    box-shadow: 0 20px 60px rgba(155, 81, 224, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Gradient border effect */
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #9b51e0, #00fff3, #3f51b5);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradient-rotate 3s linear infinite;
}

.faq-item.active::before {
    opacity: 1;
}

/* Licznik pytania */
.faq-number {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 15px rgba(155, 81, 224, 0.4);
    transition: all 0.3s ease;
}

.faq-item.active .faq-number {
    background: linear-gradient(135deg, #00fff3, #3f51b5);
    transform: translateY(-50%) scale(1.1) rotate(360deg);
}

.faq-question {
    padding: 28px 80px 28px 75px;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.faq-question:hover {
    color: #00fff3;
}

.faq-item.active .faq-question {
    color: #00fff3;
    text-shadow: 0 0 10px rgba(0, 255, 243, 0.3);
}

/* Ikona plus/minus - nowoczesna */
.faq-icon {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(155, 81, 224, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-icon {
    border-color: rgba(0, 255, 243, 0.6);
    background: rgba(0, 255, 243, 0.1);
}

.faq-item.active .faq-icon {
    transform: translateY(-50%) rotate(180deg);
    background: linear-gradient(135deg, #9b51e0, #00fff3);
    border-color: #00fff3;
    box-shadow: 0 0 20px rgba(0, 255, 243, 0.4);
}

/* Plus icon */
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    height: 0;
}

/* Odpowiedź */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    padding: 0 75px 0 75px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 75px 30px 75px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    padding-top: 10px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    font-weight: 400;
    border-top: 1px solid rgba(155, 81, 224, 0.2);
}

/* Dekoracyjny element przy odpowiedzi */
.faq-answer::before {
    content: '"';
    font-size: 4rem;
    color: rgba(155, 81, 224, 0.2);
    position: absolute;
    left: 25px;
    margin-top: -10px;
    font-family: Georgia, serif;
}

/* Glow effect dla aktywnego itemu */
.faq-item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(155, 81, 224, 0.15) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 20px;
}

/* CTA na dole FAQ */
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 2px solid rgba(155, 81, 224, 0.3);
    position: relative;
    z-index: 2;
}

.faq-cta h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #9b51e0, #7e3bb8);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.4);
    position: relative;
    overflow: hidden;
}

.faq-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.faq-cta-button:hover::before {
    left: 100%;
}

.faq-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 81, 224, 0.6);
}

.faq-cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-cta-button:hover i {
    transform: scale(1.2);
}

/* Responsywność */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .faq-number {
        left: 15px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 22px 60px 22px 55px;
    }
    
    .faq-icon {
        right: 18px;
        width: 35px;
        height: 35px;
    }
    
    .faq-icon::before {
        width: 14px;
    }
    
    .faq-icon::after {
        height: 14px;
    }
    
    .faq-answer {
        padding: 0 55px 0 55px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 55px 25px 55px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .faq-answer::before {
        font-size: 3rem;
        left: 15px;
    }
    
    .faq-cta {
        padding: 35px 20px;
        margin-top: 40px;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .faq-cta-button {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Animacje wejścia */
.faq-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }
.faq-item:nth-child(7) { animation-delay: 0.4s; }
.faq-item:nth-child(8) { animation-delay: 0.45s; }

/* Animacja wejścia (opcjonalna - jeśli używasz ScrollReveal) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

/* KRYTYCZNE POPRAWKI CSS DLA SLIDERA */

.slider {
    cursor: ew-resize;
    touch-action: none; /* Ważne dla mobile */
}

.slider-handle {
    cursor: grab;
    will-change: left;
    pointer-events: all; /* Upewnij się że można kliknąć */
}

.slider-handle:active {
    cursor: grabbing;
}

.slider img {
    pointer-events: none; /* Zablokuj interakcje z obrazkami */
    user-select: none;
    -webkit-user-drag: none;
}

.after-image {
    will-change: clip-path;
}

.slider-line {
    will-change: left;
    transition: none !important; /* WAŻNE - usuń wszystkie transition */
}

/* ===================================
   GLOBALNE POPRAWKI CZYTELNOŚCI
   =================================== */

:root {
    --primary-color: #9b51e0;
    --secondary-color: #3f51b5;
    --background-light: #f8f8f8;
    --text-dark: #1a1a2e;
    --text-medium: #2d3748;
    --text-light: #4a5568;
    --transition-speed: 0.3s;
}

/* ===================================
   SEKCJA OFERTA - POPRAWIONA CZYTELNOŚĆ
   =================================== */

.oferta {
    position: relative;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
    padding: 100px 0 120px;
    overflow: hidden;
}

.oferta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

.oferta-item h3 {
    font-size: 1.8rem;
    margin: 20px 0 15px;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
}

.oferta-item > p {
    color: #2d3748;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.oferta-item .oferta-list li {
    color: #1a1a2e;
    font-weight: 500;
}

.contact-info h3 {
    color: #1a1a2e;
    font-size: 1.9rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.oferta-note {
    color: #2d3748 !important;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
    margin: 0;
}

/* ===================================
   SEKCJA KONTAKT - MAKSYMALNA CZYTELNOŚĆ
   =================================== */

.contact-section {
    position: relative;
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px;
    overflow: hidden;
}

.contact-container {
    position: relative;
    background: white;
    padding: 60px 50px;
    border-radius: 30px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
    overflow: hidden;
}

.contact-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.contact-subtitle {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.08), rgba(63, 81, 181, 0.05));
    border-radius: 15px;
    border-left: 4px solid #9b51e0;
    transition: all 0.3s ease;
}

.contact-info-text h3 {
    color: #1a1a2e;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-text p {
    color: #2d3748;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.contact-social h3 {
    color: #1a1a2e;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #1a1a2e;
    font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.contact-container p:not(.contact-subtitle):not(.contact-info-text p) {
    text-align: center;
    color: #2d3748;
    font-size: 0.95rem;
    margin: 20px 0;
    font-weight: 500;
}

/* ===================================
   SEKCJA RETUSZ - POPRAWIONA CZYTELNOŚĆ
   =================================== */

.retusz {
    position: relative;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 50%, #f0f0f0 100%);
    padding: 100px 0 120px;
    overflow: hidden;
}

.retusz h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

.article-preview > p:first-child {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
    border-left: 4px solid #9b51e0;
}

.article-preview > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 400;
}

#fullArticle h4 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin: 40px 0 20px;
    padding-left: 20px;
    border-left: 5px solid #9b51e0;
    line-height: 1.4;
    font-weight: 700;
    position: relative;
}

#fullArticle p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 400;
}

#fullArticle ul li {
    color: #1a1a2e;
    font-weight: 500;
}

/* ===================================
   SEKCJA MAPA - POPRAWIONA CZYTELNOŚĆ
   =================================== */

.mapa-info-item strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.mapa-info-item p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.mapa-hours h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.mapa-hours p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

/* ===================================
   FOOTER - POPRAWIONA CZYTELNOŚĆ
   =================================== */

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 400;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-newsletter p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.footer-made-with {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 400;
}

/* ===================================
   CENNIK - LEKKIE POPRAWKI
   =================================== */

.cennik-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 60px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.package ul li {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.cennik-footer-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 400;
}

/* ===================================
   FAQ - POPRAWIONA CZYTELNOŚĆ
   =================================== */

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 60px;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.faq-answer p {
    margin: 0;
    padding-top: 10px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    font-weight: 400;
    border-top: 1px solid rgba(155, 81, 224, 0.2);
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 400;
}

/* ===================================
   GALLERY - LEKKIE POPRAWKI
   =================================== */

.gallery h2 {
    padding: 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
    text-shadow: 0 5px 30px rgba(155, 81, 224, 0.5);
}

.filter-btn {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ===================================
   DODATKOWE GLOBALNE POPRAWKI
   =================================== */

body {
    font-family: "Roboto Condensed", sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
}

h1 {
    font-family: "Antonio", serif;
    font-size: clamp(20px, 5vw, 60px);
    font-weight: bold;
    color: #fff;
}

h2 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    color: #1a1a2e;
}

h3 { 
    font-size: 1.5rem;
    color: #1a1a2e;
}

/* ===================================
   RESPONSYWNOŚĆ - ZACHOWANE
   =================================== */

@media (max-width: 768px) {
    .contact-subtitle {
        font-size: 1rem;
        color: #2d3748;
        font-weight: 500;
    }
    
    .oferta-note {
        font-size: 1rem;
        color: #2d3748 !important;
        font-weight: 500;
    }
    
    .article-preview > p:first-child {
        font-size: 1.1rem;
        color: #1a1a2e;
        font-weight: 500;
    }
    
    .article-preview > p {
        font-size: 1rem;
        color: #2d3748;
        font-weight: 400;
    }
    
    #fullArticle p {
        font-size: 1rem;
        color: #2d3748;
        font-weight: 400;
    }
}