﻿/* === 1. ZMIENNE I RESET === */
:root {
    /* Kolorystyka: Ultra-Minimalist */
    --bg-white: #ffffff;
    --bg-light: #f4f6f8;
    --text-main: #1a1a1a; /* Ciemny grafit */
    --text-muted: #6c757d;
    --accent-color: #FFB400; /* Budowlany żółty/bursztynowy - mocny kontrast */
    --accent: var(--accent-color); /* Alias dla globalnych skryptów */
    --dark-bg: #111111;
    
    /* Typografia */
    --font-main: 'Manrope', sans-serif;
    
    /* Spacing */
    --container-padding: 20px;
    --section-spacing: 80px;
    --border-radius: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* === 2. KOMPONENTY UI === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.btn-mini {
    padding: 10px 18px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    background-color: var(--accent-color);
    color: #000;
    border-radius: 6px;
}

.btn-mini:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

.btn-outline-strong {
    border: 2px solid #000;
    color: #000;
}

.btn-outline-strong:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.trust-stats {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.trust-number {
    font-weight: 800;
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.85;
}

.response-promise {
    margin-top: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.mini-lead-form {
    margin-top: 16px;
}

.mini-lead-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
}

.mini-lead-row input {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #111;
}

.mini-lead-row input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 700px) {
    .mini-lead-row {
        grid-template-columns: 1fr;
    }
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-call .btn-text,
.btn-call .btn-phone {
    display: inline-block;
    line-height: 1.1;
}

@media (max-width: 600px) {
    .btn-call {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

.section {
    padding: var(--section-spacing) 0;
}

.bg-light { background-color: var(--bg-light); }
.dark-mode { background-color: var(--dark-bg); color: #fff; }

.section-header {
    margin-bottom: 50px;
    max-width: 800px;
}

.section-tag {
    display: block;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* === 3. HEADER & NAV (MOBILE FIRST) === */
.header {
    position: -webkit-sticky; /* Wsparcie dla Safari */
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
}

.logo span { color: var(--accent-color); }

/* Mobile Menu */
.nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    display: none; /* JS toggle */
    border-bottom: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.nav.active { display: block; }

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.nav-link {
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Desktop Nav */
@media (min-width: 992px) {
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-menu-btn { 
        display: none; 
        position: static;
        transform: none;
    }
    .nav {
        position: static;
        display: block;
        background: none;
        width: auto;
        padding: 0;
        border: none;
        box-shadow: none;
    }
    .nav-list {
        flex-direction: row;
        gap: 40px;
        align-items: center;
    }
    .nav-link { font-size: 1rem; }
    .btn-cta {
        padding: 10px 20px;
        background-color: var(--text-main);
        color: #fff;
        border-radius: 4px;
    }
    .btn-cta:hover { background-color: var(--accent-color); color: #000; }
}

/* === 4. HERO SECTION === */
.hero {
    position: relative;
    height: 100vh; /* Full screen */
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('logo/background.webp'); /* Upewnij się, że plik istnieje */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efekt paralaksy */
    color: #fff;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (min-width: 768px) {
    .hero-title { font-size: 5rem; }
    .hero-subtitle { font-size: 1.5rem; }
}

/* === 5. ABOUT & SERVICES (GRID) === */
.about-grid {
    display: grid;
    gap: 40px;
}

.features-list {
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.features-list i { color: var(--accent-color); }

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }

@media (min-width: 768px) {
    .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* === 6. PROCESS (WSPÓŁPRACA) === */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.process-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 28px;
    border-radius: var(--border-radius);
    transition: 0.3s;
}

.process-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.06);
}

.process-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === 7. CLIENTS === */
.clients { text-align: center; padding: 40px 0; }
.clients-title { text-transform: uppercase; color: #aaa; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 20px; }
.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}
.clients-logos img {
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    max-height: 60px;
    width: auto;
}
.clients-logos img:hover { opacity: 1; filter: grayscale(0); transform: scale(1.1); }

/* === 8. CONTACT & FOOTER === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-item i { color: var(--accent-color); }

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    margin-bottom: 15px;
    border-radius: 4px;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.social-links a {
    font-size: 1.5rem;
    color: #fff;
    margin-right: 20px;
}

.social-links a:hover { color: var(--accent-color); }

.footer {
    background-color: #000;
    color: #555;
    padding: 30px 0;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

.footer-content { display: flex; justify-content: space-between; }

@media (min-width: 768px) {
    .contact-wrapper { grid-template-columns: 1fr 1fr; }
}

/* =========================================
9. DODATEK: REALIZACJE (GALLERY)
   ========================================= */

/* Nagłówek podstrony (mniejszy niż Hero) */
.page-header {
    background-color: var(--text-main);
    color: #fff;
    padding: 120px 0 60px 0; /* Padding-top uwzględnia fixed header */
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #ccc;
    font-size: 1.1rem;
}

/* Grid Galerii */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.gallery-item {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: 0.3s;
}

.gallery-item:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.gallery-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zdjęcia wypełnią obszar bez deformacji */
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.05); /* Lekki zoom zdjęcia przy najechaniu */
}

.gallery-content {
    padding: 20px;
}

.gallery-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.gallery-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.gallery-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.gallery-cta p {
    margin-bottom: 20px;
    font-weight: 600;
}

/* Partner Logos (Inwestycje) */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.partner-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.partner-logo {
    height: 60px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.3s ease;
}

.logo-label {
    font-size: 0.85rem;
    color: #666;
}

/* Responsywność Galerii */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   10. DODATEK: WYPOŻYCZALNIA & B2B
   ========================================= */

/* Wypożyczalnia Grid */
.rental-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.rental-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.rental-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rental-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.rental-specs {
    text-align: left;
    margin: 15px 0;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.rental-specs li {
    list-style-type: circle;
    margin-bottom: 5px;
}

.price-tag {
    background-color: var(--bg-light);
    padding: 8px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
    border-radius: 4px;
}

/* B2B Sekcja */
.b2b-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.b2b-item {
    background: #fff;
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.b2b-item i {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.tag {
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-weight: 600;
    color: var(--text-muted);
}

.info-box {
    background-color: #e3f2fd; /* Jasny niebieski */
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 15px;
    align-items: center;
    color: #0d47a1;
}

.info-box i { font-size: 1.5rem; }

/* Responsywność nowych sekcji */
@media (min-width: 768px) {
    .rental-grid { grid-template-columns: repeat(2, 1fr); }
    .b2b-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .rental-grid { grid-template-columns: repeat(3, 1fr); }
    .b2b-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================
   11. DODATEK: STRONA ZLECENIA
   ========================================= */

.hero-zlecenia {
    background-color: var(--text-main); /* Ciemne tło */
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.zlecenia-cta {
    background: var(--accent-color); /* Żółte tło dla kontrastu */
    color: var(--text-main);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.zlecenia-cta .lead {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Lista Usług (Grid) */
.service-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.service-item {
    background: #fff;
    padding: 15px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 1.1rem;
    font-weight: 500;
}

.service-item i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Przyciski Udostępniania */
.share-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 30px auto 0;
}

.share-btn {
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.share-fb { background-color: #1877F2; }
.share-wa { background-color: #25D366; }

.share-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-content.text-center .share-actions,
.page-header .share-actions {
    justify-content: center;
}

.share-ghost {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    backdrop-filter: blur(3px);
}

.share-ghost:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsywność */
@media (min-width: 768px) {
    .service-list-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   12. DODATEK: KOMUNIKATY I SHARE
   ========================================= */

.modernization-message {
    text-align: center;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid var(--accent-color); /* Ramka w kolorze akcentu */
    background-color: #fefcf5; /* Delikatne tło */
    border-radius: var(--border-radius);
}

.modernization-message h2 {
    color: var(--text-main); /* Główny kolor tekstu */
    margin-top: 10px;
    font-size: 1.8rem;
    font-weight: 800;
}

.modernization-message i {
    color: var(--accent-color); /* Ikona w kolorze akcentu (żółty/pomarańcz) */
}

/* Dostosowanie kontenera udostępniania na tej stronie */
.share-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 30px auto 0;
}

.share-buttons-container .text-center {
    display: flex;
    gap: 10px;
}

/* =========================================
   13. ANIMACJE (FADE IN)
   ========================================= */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* === DODATEK: PARTNERZY I LOGOTYPY (z Enterprise) === */
.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.trusted-logos img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    filter: grayscale(100%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.trusted-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--hover-color);
}

/* Tooltip (Dymek) */
.logo-tooltip { position: relative; display: inline-block; }
.logo-tooltip::before, .logo-tooltip::after {
    position: absolute; opacity: 0; visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none; z-index: 1100;
}
.logo-tooltip::after {
    content: attr(data-tooltip); bottom: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #333; color: #fff; padding: 8px 12px;
    border-radius: 6px; font-size: 0.85rem; white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); margin-bottom: 12px;
}
.logo-tooltip::before {
    content: ''; bottom: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    border: 6px solid transparent; border-top-color: #333; margin-bottom: 0px;
}
.logo-tooltip:hover::before, .logo-tooltip:hover::after {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}

/* Link w stopce */
.footer-content a { font-weight: bold; color: #999; }
.footer-content a:hover { color: var(--accent-color); }

/* Form Success (Poprawka koloru tekstu dla ciemnego tła) */
.form-success {
    text-align: center; padding: 40px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.form-success h3 { color: #fff; margin-bottom: 15px; font-size: 1.8rem; }
.form-success p { color: #ccc; font-size: 1.1rem; }
@keyframes popIn { 0% { opacity: 0; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1); } }

/* Obsługa efektu Glow dla nowych logotypów w Prodom */
.clients-logos .logo-tooltip img:hover {
    box-shadow: 0 0 20px var(--hover-color);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}


/* --- STYLE SYLWESTROWE - WERSJA Z DOPASOWANIEM MENU --- */

/* 1. Pasek życzeń - zostaje na samej górze */
.new-year-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px; /* Zwiększyłem nieco wysokość dla czytelności */
    background: linear-gradient(90deg, #111 0%, #d4af37 50%, #111 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002; /* Musi być najwyżej */
    font-weight: bold;
    border-bottom: 2px solid #ffd700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* 2. KLUCZOWA POPRAWKA: Przesunięcie menu i reszty strony */
body.sylwester-mode {
    /* Przesuwamy całą zawartość strony, żeby nie chowała się pod fixed header */
    padding-top: 50px !important; 
}

body.sylwester-mode .header {
    /* Twoje menu zaczyna się teraz 50px od góry, czyli tuż pod paskiem */
    top: 50px !important; 
    transition: top 0.3s ease; /* Płynne przejście */
}

/* 3. Konfetti (bez zmian, musi być pod paskiem) */
.confetti {
    position: fixed;
    top: -15px;
    width: 8px;
    height: 8px;
    z-index: 10001; 
    pointer-events: none;
    animation: fall 4s linear infinite;
}

@keyframes fall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(105vh) rotate(720deg); opacity: 0; }
}

/* --- BAZA DLA DEKORACJI --- */
.holiday-banner {
    position: fixed; top: 0; left: 0; width: 100%; height: 50px;
    display: flex; align-items: center; justify-content: center;
    z-index: 10002; font-weight: 800; color: #fff;
}

body.holiday-mode { padding-top: 50px !important; }
body.holiday-mode .header { top: 50px !important; }

/* --- MOTYW SYLWESTER (Złoty/Czarny) --- */
.sylwester-banner { background: linear-gradient(90deg, #000, #d4af37, #000); border-bottom: 2px solid #ffd700; }

/* --- MOTYW WIELKANOC (Zielony/Żółty) --- */
.easter-banner { background: linear-gradient(90deg, #4CAF50, #CDDC39, #4CAF50); border-bottom: 2px solid #fff; }
.easter-mode .btn-primary { background-color: #4CAF50 !important; }

/* --- MOTYW MAJÓWKA (Biało-Czerwony) --- */
.majowka-banner { background: linear-gradient(90deg, #fff 45%, #dc3545 55%); color: #000 !important; border-bottom: 2px solid #dc3545; }
.majowka-banner span { background: #fff; padding: 2px 10px; border-radius: 5px; }

/* --- MOTYW BOŻE NARODZENIE (Czerwony/Zielony) --- */
.christmas-banner { background: linear-gradient(90deg, #2d5a27, #c0392b, #2d5a27); border-bottom: 2px solid #f1c40f; }

/* --- ANIMACJE CZĄSTECZEK (Śnieg i Konfetti) --- */
.snow, .confetti {
    position: fixed; top: -15px; width: 8px; height: 8px;
    z-index: 10001; pointer-events: none; animation: fall 5s linear infinite;
}
.snow { background: #fff; border-radius: 50%; filter: blur(1px); }
.confetti { border-radius: 2px; }

@keyframes fall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(105vh) rotate(720deg); opacity: 0; }
}

/* Form Success */
.form-success {
    text-align: center; padding: 40px; background: #fff;
    border-radius: 8px; border: 2px solid var(--accent-color);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.form-success h3 { color: var(--text-main); margin-bottom: 15px; font-size: 1.8rem; }
.form-success p { color: var(--text-muted); font-size: 1.1rem; }
@keyframes popIn { 0% { opacity: 0; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1); } }

/* --- Footer Layout & Magnifier (Dla Prodom) --- */
.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    opacity: 0.9;
    margin-bottom: 15px;
    color: #555; /* Kolor tekstu w stopce Prodom */
}

.footer-separator {
    display: inline;
}

@media (max-width: 600px) {
    .footer-info {
        flex-direction: column;
        gap: 5px;
    }
    .footer-separator { display: none; }
}

@media (min-width: 1024px) {
    .why-grid { grid-template-columns: repeat(4, 1fr); }
    .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.btn-install {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.18), rgba(255, 200, 0, 0.05));
    border: 1px solid rgba(255, 200, 0, 0.6);
    color: #f5f5f5;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    display: none;
}

.btn-install:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background-color: rgba(255, 200, 0, 0.2);
}

.btn-install i { margin-right: 8px; }

.btn-install.visible { display: inline-block; }
.btn-install.disabled { opacity: 0.6; cursor: not-allowed; }

