:root {
    --accent-pink: #FF007F;
    --accent-glow: rgba(255, 0, 127, 0.6);
    --bg-dark: #050505;
    --bg-dark-secondary: #111111;
    --bg-light: #FFFFFF;
    --bg-light-secondary: #F4F4F5;
    --text-light: #FFFFFF;
    --text-gray: #A1A1AA;
    --text-dark: #09090B;
    --text-dark-muted: #474747;
    --bg-yellow: linear-gradient(135deg, #f9b000 0%, #f59c00 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; background-color: var(--bg-dark); color: var(--text-light); overflow-x: hidden; }

h1, h2, h3, h4, .counter-number { font-family: 'Outfit', sans-serif; line-height: 1.15; }

.container { max-width: 1400px; margin: 0 auto; padding: 120px 5%; }

.section-dark { background-color: var(--bg-dark); color: var(--text-light); }
.section-light { background-color: var(--bg-light); color: var(--text-dark); }
.section-yellow { background: var(--bg-yellow); color: var(--text-dark); }
.faq-section { background-color: var(--bg-light-secondary); }

.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease forwards; }
.fade-up-delayed { opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease forwards 0.2s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Buttons */
.btn-glow {
    display: inline-block; background: transparent; color: var(--text-light);
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem;
    padding: 16px 40px; border: 2px solid var(--accent-pink); border-radius: 50px;
    text-transform: uppercase; letter-spacing: 2px; text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 0 0 0 var(--accent-pink), 0 0 20px rgba(255, 0, 127, 0); cursor: pointer; text-align: center;
}
.btn-glow:hover { color: var(--text-light); box-shadow: inset 500px 0 0 0 var(--accent-pink), 0 0 30px var(--accent-glow); }

.btn-glow-light {
    display: inline-block; background: var(--bg-light); color: var(--text-dark);
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem;
    padding: 16px 40px; border: 2px solid var(--accent-pink); border-radius: 50px;
    text-transform: uppercase; letter-spacing: 2px; text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 0 0 0 var(--accent-pink), 0 0 20px rgba(255, 0, 127, 0); cursor: pointer; text-align: center;
}
.btn-glow-light:hover { color: var(--text-dark); box-shadow: inset 500px 0 0 0 var(--accent-pink), 0 0 30px var(--accent-glow); }

.btn-solid-dark {
    background: var(--bg-dark); color: var(--text-light); border: none; border-radius: 50px;
    padding: 16px 40px; font-family: 'Outfit', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.btn-solid-dark:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

/* Header */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); padding: 12px 5%;
    transition: padding 0.3s, background 0.3s, box-shadow 0.3s;
}
header.scrolled { padding: 8px 5%; background: rgba(255, 255, 255, 0.98); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-bottom-color: rgba(0, 0, 0, 0.15); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; }
.logo-image { height: 60px; width: auto; display: block; transition: height 0.3s; }
header.scrolled .logo-image { height: 45px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    color: var(--text-dark); text-decoration: none; font-size: 0.85rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; position: relative;
}
.nav-links a:not(.nav-cta):not(.nav-shop)::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0%; height: 2px; background: var(--accent-pink); transition: width 0.3s; }
.nav-links a:not(.nav-cta):not(.nav-shop):hover::after, .nav-links a.active:not(.nav-cta):not(.nav-shop)::after { width: 100%; }

.nav-shop { color: var(--text-dark-muted) !important; }
.nav-shop:hover { color: var(--accent-pink) !important; }

.nav-links a.nav-cta {
    background: var(--accent-pink) !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
    transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.5);
}

.hamburger { display: none; cursor: pointer; border: none; background: transparent; color: var(--text-dark); font-size: 28px; z-index: 1001; transition: color 0.3s; }

.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh;
    background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 0, 127, 0.2); padding: 120px 40px 40px;
    display: flex; flex-direction: column; gap: 24px; transition: right 0.4s ease; z-index: 999;
}
.mobile-menu.open { right: 0; }
.mobile-menu a { color: var(--text-light); font-size: 1.2rem; font-weight: 700; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }

.mobile-cta {
    color: var(--accent-pink) !important;
    font-size: 1.3rem !important;
    text-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
}
.mobile-divider {
    border: 0; border-top: 1px solid rgba(255, 0, 127, 0.2); margin: 5px 0 10px 0; width: 50px;
}

@media (max-width: 1050px) { .nav-links { gap: 15px; } .nav-links a { font-size: 0.8rem; } .nav-cta { padding: 8px 15px !important; } }
@media (max-width: 900px) { .nav-links { display: none; } .hamburger { display: block; } }

/* PŁYWAJĄCA ZAKŁADKA BOCZNA */
.sticky-side-tab {
    position: fixed;
    right: 0; 
    top: 40%; 
    transform: translateY(-50%);
    z-index: 9990;
    display: flex;
    align-items: center;
}
.sticky-tab-link {
    background: var(--accent-pink);
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 16px 14px 12px; 
    border-radius: 0 30px 30px 0; 
    box-shadow: 4px 0 20px rgba(255, 0, 127, 0.4);
    writing-mode: vertical-rl;
    transform: rotate(180deg); 
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.sticky-tab-link i {
    transform: rotate(90deg); 
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.sticky-tab-link:hover {
    padding-right: 28px; 
    box-shadow: 6px 0 30px var(--accent-glow);
    background: #ff1a8c;
}
@media (max-width: 768px) {
    .sticky-tab-link {
        padding: 12px 14px 12px 10px;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    .sticky-tab-link:hover {
        padding-right: 20px;
    }
}

/* 1. Hero z Wideo w tle */
.hero {
    height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
    padding-top: 90px;
    background-color: var(--bg-dark);
}

.hero-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    object-fit: cover; z-index: 0;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 0, 127, 0.15) 0%, rgba(0, 0, 0, 0.85) 55%);
    z-index: 1;
}

.hero-content { max-width: 1000px; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.8rem, 5vw, 6rem); margin-bottom: 30px; letter-spacing: -1px; }
.hero h1 span { color: var(--accent-pink); text-shadow: 0 0 30px var(--accent-glow); }
.hero p { font-size: 1.2rem; color: var(--text-light); max-width: 650px; margin-bottom: 40px; opacity: 0.9; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 18px; }

/* Statystyki */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; border-top: 1px solid rgba(255,0,127,0.2); padding-top: 80px; }
.stat-box { text-align: center; }
.counter-number { font-size: clamp(3rem, 5vw, 5rem); font-weight: 900; color: var(--accent-pink); text-shadow: 0 0 40px var(--accent-glow); margin-bottom: 5px; display: inline-block; }
.stat-box p { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-gray); }

/* 2. Oferta */
.section-light .oferta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 60px; }
.section-light h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); letter-spacing: -1px; margin-bottom: 15px; }

.service-card {
    background: var(--bg-light); padding: 45px 35px; border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04); 
    border: 1px solid rgba(0,0,0,0.06); position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    opacity: 0; transform: scale(0.85);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
}
.service-card.is-visible { opacity: 1; transform: scale(1); }
.service-card.is-visible:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.12); }
.service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent-pink); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card.is-visible:hover::after { transform: scaleX(1); }
.service-card h3 { font-size: 1.7rem; margin-bottom: 16px; }
.service-card p { color: var(--text-dark-muted); font-size: 1.05rem; font-weight: 400; flex-grow: 1; margin-bottom: 20px; }

.price-link {
    font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; 
    color: var(--accent-pink); text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: opacity 0.3s, transform 0.3s;
}
.price-link:hover { opacity: 0.8; transform: translateX(5px); }
.price-link i { font-size: 0.9em; transition: transform 0.3s; }
.price-link:hover i { transform: translateX(4px); }

/* Baner do sklepu B2B */
.shop-banner {
    background: var(--bg-dark); border-radius: 20px; padding: 50px; margin-top: 60px;
    display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 1px solid rgba(255,0,127,0.2);
}
.shop-banner-text h3 { color: var(--text-light); font-size: 2rem; margin-bottom: 10px; }
.shop-banner-text p { color: var(--text-gray); font-size: 1.1rem; margin: 0; max-width: 600px; font-weight: 400; }

@media (max-width: 768px) {
    .shop-banner { padding: 40px 30px; text-align: center; justify-content: center; }
    .shop-banner .btn-glow { width: 100%; text-align: center; }
}

/* 3. Portfolio Karuzela */
.section-yellow { padding-bottom: 0; }
.section-yellow .portfolio-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--text-dark); margin-bottom: 10px; }
.portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }

.custom-carousel-wrapper { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
.custom-carousel {
    display: flex; gap: 15px; overflow-x: auto; padding: 20px 5% 60px 0; scrollbar-width: none;
    -ms-overflow-style: none; cursor: grab; -webkit-overflow-scrolling: touch; 
}
.custom-carousel::-webkit-scrollbar { display: none; }
.custom-carousel:active { cursor: grabbing; }
.portfolio-item {
    flex: 0 0 75%; aspect-ratio: 3/4; border-radius: 12px; overflow: hidden;
    background: var(--bg-dark-secondary); box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    user-select: none; -webkit-user-select: none; position: relative; cursor: pointer;
}
@media (min-width: 768px) { .portfolio-item { flex: 0 0 40%; } }
@media (min-width: 1100px) { .portfolio-item { flex: 0 0 25%; } }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; }
.portfolio-item:hover img { transform: scale(1.05); }

/* FULLSCREEN LIGHTBOX */
.lightbox-overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    z-index: 10005; display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: auto; cursor: zoom-out; }
.lightbox-img, .lightbox-video {
    max-width: 90%; max-height: 85vh; border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); 
    transform: scale(0.95); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: default;
}
.lightbox-img { object-fit: contain; }
.lightbox-video { object-fit: contain; background: #000; outline: none; }
.lightbox-overlay.active .lightbox-img, .lightbox-overlay.active .lightbox-video { transform: scale(1); }
.lightbox-caption {
    color: #E4E4E7; font-family: 'Inter', sans-serif; font-weight: 300; font-size: 0.95rem;
    letter-spacing: 3px; text-transform: uppercase; margin-top: 25px; text-align: center;
    opacity: 0; transform: translateY(10px); max-width: 90%; transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.lightbox-overlay.active .lightbox-caption { opacity: 1; transform: translateY(0); }
.lightbox-close {
    position: absolute; top: 25px; right: 35px; font-size: 40px; color: var(--text-light);
    cursor: pointer; border: none; background: transparent; transition: color 0.3s, transform 0.3s; z-index: 10006;
}
.lightbox-close:hover { color: var(--accent-pink); transform: scale(1.1); }
@media (max-width: 768px) { .lightbox-close { top: 15px; right: 20px; font-size: 35px; } }

/* 4. Opinie - KARUZELA */
.review-item {
    flex: 0 0 85%; background: var(--bg-light); padding: 40px; border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05); 
    display: flex; flex-direction: column; justify-content: space-between; user-select: none; -webkit-user-select: none;
}
@media (min-width: 768px) { .review-item { flex: 0 0 45%; } }
@media (min-width: 1100px) { .review-item { flex: 0 0 30%; } }
.review-stars { color: #fbbc04; font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 2px; }
.review-text { font-size: 1.05rem; color: var(--text-dark-muted); font-style: italic; margin-bottom: 25px; line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 15px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-light-secondary); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--text-gray); font-size: 1.2rem; }
.author-info h4 { font-size: 1rem; color: var(--text-dark); margin: 0; }
.author-info span { font-size: 0.85rem; color: var(--text-gray); }

/* 5. O nas */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section-yellow .about-text h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 24px; color: var(--text-dark); }
.section-yellow .about-text p { font-size: 1.1rem; color: #222222; margin-bottom: 16px; font-weight: 500; }

.about-image-wrapper {
    position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); cursor: pointer; border: 4px solid var(--bg-light);
}
.about-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.about-image-wrapper:hover img { transform: scale(1.03); }
.play-icon-overlay {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 76px; height: 76px; background: rgba(255, 255, 255, 0.15); border-radius: 50%;
    display: flex; justify-content: center; align-items: center; color: #ffffff; font-size: 26px; padding-left: 4px;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.4); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; z-index: 2;
}
.about-image-wrapper:hover .play-icon-overlay {
    background: var(--accent-pink); border-color: var(--accent-pink);
    box-shadow: 0 0 40px rgba(255,0,127,0.6); transform: translate(-50%, -50%) scale(1.1);
}

/* 6. FAQ */
.faq-header { text-align: left; margin-bottom: 60px; }
.faq-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 15px; color: var(--text-dark); }
.faq-header p { font-size: 1.15rem; color: var(--text-dark-muted); max-width: 600px; margin: 0; }
.faq-accordion { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; padding: 25px 0;
    font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text-dark);
    display: flex; justify-content: space-between; align-items: center; cursor: pointer;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--accent-pink); }
.faq-question i { font-size: 1.1rem; color: var(--accent-pink); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.4s ease; opacity: 0; }
.faq-answer-inner { padding-bottom: 25px; padding-right: 40px; color: var(--text-dark-muted); font-size: 1.05rem; line-height: 1.7; }

.faq-item.active .faq-question { color: var(--accent-pink); }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-item.active .faq-answer { opacity: 1; }
@media (max-width: 768px) {
    .faq-question { font-size: 1.1rem; padding: 20px 0; }
    .faq-answer-inner { padding-right: 10px; font-size: 1rem; }
    #faq .container { padding-bottom: 50px; }
}

/* 7. Kontakt + Formularz */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.contact-info h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 35px; }
.contact-detail { margin-bottom: 25px; }
.contact-detail h4 { font-size: 0.9rem; text-transform: uppercase; color: var(--text-gray); letter-spacing: 2px; margin-bottom: 8px; }
.contact-detail p { font-size: 1.5rem; font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--text-light); }
.contact-detail p.highlight { font-size: clamp(1.8rem, 4vw, 2.4rem); text-shadow: 0 0 20px var(--accent-glow); margin-bottom: 0; line-height: 1.1; }
.contact-detail p.highlight a { color: var(--accent-pink); text-decoration: none; transition: opacity 0.3s ease; }
.contact-detail p.highlight a:hover { opacity: 0.8; }

.social-links { display: flex; gap: 20px; margin-top: 15px; flex-wrap: wrap; }
.social-icon { 
    width: 45px; height: 45px; border-radius: 50%; display: flex; justify-content: center; align-items: center; 
    background: rgba(255, 255, 255, 0.05); color: var(--text-light); border: 1px solid rgba(255, 255, 255, 0.1); 
    font-size: 1.3rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none; 
}
.social-icon:hover { 
    background: transparent; color: var(--text-light); border-color: var(--accent-pink); 
    box-shadow: inset 0 0 15px rgba(255, 0, 127, 0.5), 0 0 15px var(--accent-glow); transform: translateY(-3px); 
}

.contact-form { background: var(--bg-dark-secondary); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,0,127,0.1); }
.contact-form h3 { font-size: 1.8rem; margin-bottom: 25px; color: var(--text-light); }
.contact-form label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-gray); margin-bottom: 8px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 14px 18px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.1);
    background: #FFFFFF; color: var(--text-dark); font-size: 1rem; margin-bottom: 20px;
    font-family: 'Inter', sans-serif; transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent-pink); box-shadow: 0 0 15px rgba(255,0,127,0.3); }
.contact-form .form-row { display: flex; gap: 20px; flex-wrap: wrap; }
.contact-form .form-row > div { flex: 1; min-width: 200px; }
.contact-form .consent { display: flex; align-items: flex-start; gap: 12px; font-size: 0.85rem; color: var(--text-gray); margin-bottom: 25px; line-height: 1.5; }
.contact-form .consent input { width: auto; margin-top: 4px; }
.contact-form .btn-glow { width: 100%; }

/* Pełnoekranowa mapa */
.full-width-map { position: relative; width: 100%; height: 450px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,0,127,0.2); box-shadow: 0 10px 40px rgba(0,0,0,0.5); cursor: pointer; }
.map-overlay-link { position: absolute; inset: 0; z-index: 10; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0); transition: background 0.3s; text-decoration: none; }
.map-overlay-link:hover { background: rgba(255,0,127,0.1); }
.map-overlay-link span { opacity: 0; background: var(--accent-pink); color: #fff; padding: 12px 25px; border-radius: 50px; font-family: 'Outfit', sans-serif; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; transform: translateY(20px); transition: all 0.3s; box-shadow: 0 5px 20px rgba(255,0,127,0.4); }
.map-overlay-link:hover span { opacity: 1; transform: translateY(0); }
.full-width-map iframe { width: 100%; height: 100%; display: block; border: 0; pointer-events: none; }

/* 8. Stopka */
footer { background: var(--bg-light); padding: 40px 5%; border-top: 1px solid rgba(0,0,0,0.1); color: var(--text-dark-muted); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; flex-wrap: wrap; gap: 20px; }
.footer-logo { height: 40px; opacity: 0.8; }
.footer-links { display: flex; gap: 25px; align-items: center; }
.footer-links a { color: var(--text-dark-muted); text-decoration: none; transition: color 0.3s; font-size: 0.9rem; font-weight: 500;}
.footer-links a:hover { color: var(--accent-pink); }
.footer-info p { font-size: 0.85rem; margin: 0;}
.footer-bottom { width: 100%; text-align: center; margin-top: 20px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 20px; font-size: 0.8rem;}

/* PRZYCISK SCROLL TO TOP */
.scroll-to-top {
    position: fixed; bottom: 30px; right: 110px;
    width: 60px; height: 60px;
    background: rgba(5, 5, 5, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 127, 0.3); border-radius: 50%;
    display: flex; justify-content: center; align-items: center; color: var(--accent-pink);
    font-size: 1.2rem; text-decoration: none; z-index: 9990;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.scroll-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-to-top:hover { background: var(--accent-pink); color: var(--text-light); border-color: var(--accent-pink); box-shadow: 0 0 20px var(--accent-glow); transform: translateY(-5px); }

/* WIDŻET SZYBKIEGO KONTAKTU */
.quick-contact-widget {
    position: fixed; bottom: 30px; right: 30px; z-index: 9995;
}
.qc-toggle {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--accent-pink); color: var(--text-light); border: none;
    font-size: 1.5rem; cursor: pointer; box-shadow: 0 5px 20px rgba(255, 0, 127, 0.4);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s; position: relative; z-index: 2;
}
.qc-toggle:hover { transform: scale(1.05); box-shadow: 0 5px 25px rgba(255, 0, 127, 0.6); }
.qc-menu {
    position: absolute; bottom: 75px; right: 0; display: flex; flex-direction: column; gap: 10px;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1;
}
.qc-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.qc-item {
    display: flex; align-items: center; gap: 12px; background: var(--bg-dark-secondary);
    border: 1px solid rgba(255,0,127,0.2); color: var(--text-light);
    padding: 12px 20px 12px 15px; border-radius: 50px; text-decoration: none;
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; text-transform: uppercase;
    letter-spacing: 1px; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s; white-space: nowrap;
}
.qc-item i { font-size: 1.2rem; color: var(--accent-pink); transition: color 0.3s; width: 24px; text-align: center; }
.qc-item:hover { background: var(--accent-pink); color: var(--text-light); border-color: var(--accent-pink); transform: translateX(-5px); }
.qc-item:hover i { color: var(--text-light); }

/* Cookies & Modals */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9998; transform: translateY(120%);
    background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,0,127,0.3); padding: 18px 5%; display: flex; justify-content: space-between;
    align-items: center; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.9rem; margin-bottom: 0; color: var(--text-gray); line-height: 1.5; max-width: 800px; }
.cookie-banner a { color: var(--accent-pink); text-decoration: none; border-bottom: 1px solid var(--accent-pink); transition: opacity 0.3s; cursor: pointer; }
.cookie-banner a:hover { opacity: 0.8; }

.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(5px); z-index: 10000;
    display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content {
    background: var(--bg-dark-secondary); width: 90%; max-width: 700px; max-height: 85vh; padding: 45px;
    border-radius: 24px; border: 1px solid rgba(255,0,127,0.2); position: relative; overflow-y: auto;
    transform: translateY(20px); transition: transform 0.3s ease; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 20px; right: 25px; font-size: 30px; color: var(--text-gray); cursor: pointer; border: none; background: transparent; transition: color 0.3s; }
.modal-close:hover { color: var(--accent-pink); }
.modal-content h2 { font-size: 2rem; margin-bottom: 20px; color: var(--accent-pink); }
.modal-content p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 15px; line-height: 1.7; }

/* STYLE DLA NOWEGO MODALA - KATALOGI KALENDARZY */
.calendars-content { max-width: 850px; }
.calendars-content p { color: var(--text-gray); font-size: 1.05rem; margin-bottom: 30px; }
.calendars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}
.calendar-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255,0,127,0.15);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.calendar-card i {
    color: var(--accent-pink);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    transition: color 0.3s;
}
.calendar-card span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.calendar-card:hover {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255,0,127,0.3);
}
.calendar-card:hover i, .calendar-card:hover span {
    color: #ffffff;
}

@media (max-width: 992px) {
    .stats-grid, .about-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { flex-direction: column; text-align: center; justify-content: center; }
}

@media (max-width: 768px) {
    .container { padding: 90px 5%; }
    .hero { padding-top: 100px; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 15px; padding: 25px 5%; }
    .modal-content { padding: 30px 20px; }
    .calendars-grid { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 10px; }
    .quick-contact-widget { bottom: 20px; right: 20px; }
    
    .scroll-to-top { 
        bottom: 20px; 
        left: 50%; 
        right: auto; 
        width: 45px; 
        height: 45px; 
        font-size: 1.1rem; 
        transform: translateX(-50%) translateY(20px); 
    }
    .scroll-to-top.visible { transform: translateX(-50%) translateY(0); }
    .scroll-to-top:hover { transform: translateX(-50%) translateY(-5px); }

    .qc-toggle { width: 50px; height: 50px; font-size: 1.3rem; }
    .custom-carousel { padding-right: 5%; }
    
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn-glow { width: 100%; text-align: center; }

    .portfolio-header { flex-direction: column; align-items: stretch; text-align: left; }
    .portfolio-header .btn-glow-light { width: 100%; text-align: center; margin-top: 15px; }

    .about-btn-wrapper { width: 100%; }
    .about-btn-wrapper .btn-glow-light { width: 100%; text-align: center; }
}