/* --- ZMIENNE I RESET (WERSJA LIGHT / JASNA) --- */
:root {
    /* Tła */
    --bg-dark: #ffffff;
    --bg-card: #f8f9fa;
    --bg-menu: #ffffff;
    --bg-section-alt: #f0f4f4;
    
    /* Kolor główny */
    --primary: #00C851; 
    --primary-gradient: linear-gradient(135deg, #00C851 0%, #007E33 100%);
    
    /* Teksty */
    --text-light: #1A1A1A;
    --text-muted: #5e6c76;
    --text-on-primary: #ffffff;
    
    /* Inne */
    --spacing-section: 120px;
    --radius-btn: 50px;
    --container-width: 1240px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-muted);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; color: var(--text-light); line-height: 1.1; }

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- BUTTONY --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 42px; 
    background: var(--primary-gradient);
    color: var(--text-on-primary); 
    font-weight: 700;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
}
.btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(0, 200, 81, 0.4); 
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 35px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 700;
}
.btn-outline:hover { 
    background: var(--primary); 
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    padding: 14px 42px;
    border-radius: var(--radius-btn);
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

.text-accent { color: var(--primary); font-weight: 700; letter-spacing: 1px; font-size: 0.9rem; text-transform: uppercase; }

/* --- HEADER / NAWIGACJA --- */
header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
}
header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-bottom: none;
}
nav { display: flex; justify-content: space-between; align-items: center; }

.logo-container {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 6px 0;
}
.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-item { position: relative; }

.nav-link { 
    font-size: 0.95rem; 
    color: #4a5568; 
    font-weight: 600; 
    padding: 10px 0; 
    display: flex; align-items: center; gap: 5px;
}
.nav-link:hover { color: var(--primary); }
.nav-link i { font-size: 0.8rem; margin-top: 2px; }

.dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background-color: #fff;
    min-width: 200px; border-radius: 12px; padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s ease; z-index: 1002;
    border: 1px solid #eee;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 20px; color: var(--text-muted); font-size: 0.9rem; white-space: nowrap; }
.dropdown-menu li a:hover { color: var(--primary); background: #f7f9fa; }

.burger { display: none; cursor: pointer; z-index: 1001; font-size: 1.8rem; color: #1A1A1A; margin-left: 20px; }

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background: radial-gradient(circle at top right, rgba(0, 200, 81, 0.05), transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 { font-size: 3.8rem; margin-bottom: 30px; font-weight: 800; line-height: 1.1; color: #000; }
.hero-content p { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 40px; max-width: 500px; line-height: 1.6; }

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: levitate 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

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

/* koło + tło + slider */
.circle-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 81, 0.18), transparent 60%);
    z-index: 1;
}

.hero-img-popout {
    position: relative;
    z-index: 2;
    width: 115%;
    max-width: none;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 8px solid var(--primary);
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.6) translateY(20px);
    animation: driveIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes driveIn {
    0% { opacity: 0; transform: scale(0.6) translateY(50px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-badge {
    position: absolute; bottom: 80px; left: 0; z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 16px 30px; border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 15px; min-width: 280px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1s;
}

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

.hero-badge i { font-size: 1.8rem; color: var(--primary); }
.hero-badge-text { display: flex; flex-direction: column; }
.hero-badge-text span.label { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.hero-badge-text span.value { font-size: 1.1rem; color: #000; font-weight: 700; }

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- SEKCJA FEATURES --- */
.features { padding: var(--spacing-section) 0; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 2.8rem; margin-top: 10px; margin-bottom: 20px; color: #1a1a1a; }
.section-header p { color: var(--text-muted); max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-card { 
    padding: 25px; 
    transition: 0.3s; 
    background: #fff; 
    border-radius: 16px; 
    border: 1px solid #eee;
}
.feature-card:hover { 
    transform: translateY(-5px); 
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}
.icon-box { 
    width: 64px; height: 64px; 
    background: rgba(0, 200, 81, 0.1);
    border-radius: 16px; 
    display: flex; align-items: center; justify-content: center; 
    color: var(--primary); font-size: 1.8rem; margin-bottom: 24px; 
}
.feature-card h3 { font-size: 1.3rem; margin-bottom: 16px; font-weight: 700; color: #000; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* --- SEKCJA O FIRMIE --- */
.about-split { padding: var(--spacing-section) 0; background-color: var(--bg-section-alt); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.split-grid img { border-radius: 20px; width: 100%; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.about-content h2 { font-size: 2.8rem; margin-bottom: 15px; color: #000; }
.about-content h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 30px; font-weight: 600; }
.about-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 1rem; }

/* --- OFERTA --- */
.offer-section { padding: var(--spacing-section) 0; background: #fff; }
.offer-intro { text-align: center; max-width: 800px; margin: 0 auto 60px auto; }
.offer-intro h2 { font-size: 2.5rem; margin-bottom: 15px; color: #000; }
.offer-intro p { color: var(--text-muted); font-size: 1.1rem; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.offer-card { 
    background: var(--bg-card); 
    padding: 40px 30px; 
    border-radius: 20px; 
    text-align: left; 
    transition: 0.3s; 
    border: 1px solid #eee; 
    display: flex; flex-direction: column; justify-content: space-between; 
}
.offer-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: var(--shadow-soft); }
.offer-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #000; }
.offer-card p { color: var(--text-muted); margin-bottom: 25px; line-height: 1.6; }
.read-more { color: var(--primary); font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; }
.read-more:hover { gap: 12px; }

/* --- STATYSTYKI GRADIENT --- */
.stats-gradient-section { padding: 50px 0; }
.gradient-box { 
    background: var(--primary-gradient); 
    border-radius: 30px; 
    padding: 80px 70px; 
    display: flex; align-items: center; justify-content: space-between; gap: 60px;
    box-shadow: 0 20px 40px rgba(0, 200, 81, 0.2);
}
.gradient-content-left { width: 35%; display: flex; flex-direction: column; gap: 30px; align-items: flex-start; }
.gradient-content-left h2 { color: #fff; font-size: 3rem; margin: 0; line-height: 1; font-weight: 800; }
.gradient-content-left p { color: rgba(255,255,255,0.9); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }
.stats-grid-6 { width: 60%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat-item-box { text-align: left; background: none; border: none; padding: 0; }
.stat-item-box h4 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1; }
.stat-item-box span { color: #fff; font-size: 0.85rem; font-weight: 600; opacity: 0.9; display: block; line-height: 1.4; }

/* --- FOOTER --- */
footer {
    padding: 80px 0 0 0;
    border-top: none;
    margin-top: 60px;
    background-color: #111;
    color: #eee;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.contact-block strong { color: #fff; font-size: 1.1rem; display: block; margin-bottom: 5px; }
.contact-block p { color: #aaa; font-size: 0.95rem; line-height: 1.6; }

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    text-align: right;
}

.contact-list-right { list-style: none; margin-bottom: 10px; }
.contact-list-right li { 
    display: flex; 
    align-items: flex-start; 
    gap: 10px; 
    color: #aaa; 
    margin-bottom: 12px;
    justify-content: flex-end;
}
.contact-list-right li i { color: var(--primary); margin-top: 5px; }

.footer-socials-right { display: flex; gap: 15px; justify-content: flex-end; }
.footer-socials-right i { color: #aaa; font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.footer-socials-right i:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.privacy-link a { color: #aaa; text-decoration: none; font-weight: 500; }
.privacy-link a:hover { color: #fff; }

.pixelshark { color: #666; }
.pixelshark a { color: #fff; font-weight: 600; text-decoration: none; }
.pixelshark i { color: var(--primary); animation: beat 1.5s infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* --- SEKCJA APLIKACJI --- */
.app-section {
    padding: 80px 0;
    background-color: #FEFEFE;
}

.app-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 60px;
    align-items: center;
}

.app-map-img {
    width: 100%;
    border-radius: 24px;
}

.app-content h2 {
    font-size: 2.2rem;
    margin: 10px 0 20px;
    color: #000;
}

.app-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 14px;
}

.app-store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.store-badge img {
    display: block;
    height: 80px;
    width: auto;
}

/* --- SLIDER W KOLE --- */
.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slider img.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.15);
    transition: opacity 1.2s ease-in-out, transform 6s ease-out;
}

.hero-slider img.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   STYLE DLA PODSTRON (np. WYNAJEM KONTENERÓW) - DODANE NOWE ELEMENTY
   ========================================================================== */

/* --- Subheader / Page Title --- */
.page-header {

    background: linear-gradient(135deg, rgba(0, 50, 20, 0.85), rgba(0, 200, 81, 0.75)), url('2.webp');
    background-size: cover;
    /* Pozycjonowanie na dół, aby było widać dolną część zdjęcia */
    background-position: bottom center; 
    padding: 160px 0 80px 0;
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.page-header .text-accent.text-white {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.circle-bg-header {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- Breadcrumbs (Wyśrodkowane) --- */
.page-header nav[aria-label="breadcrumb"] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.breadcrumb {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    margin: 0;
    /* Tło dla lepszej czytelności */
    background: rgba(255, 255, 255, 0.1); 
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin: 0 5px;
}

.breadcrumb .active {
    color: #fff;
    font-weight: 700;
    pointer-events: none;
}

/* --- Layout Treści z Sidebarem --- */
.page-content {
    padding: 80px 0;
    background-color: #fff;
}

.content-grid-sidebar {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Treść szersza, sidebar węższy */
    gap: 60px;
    align-items: start;
}

/* --- Elementy Typografii i Listy --- */
.lead-text {
    font-size: 1.2rem;
    color: #000;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* Klasa do zwiększenia odstępu nad nagłówkiem (Dla pojemników) */
.mt-large {
    margin-top: 100px;
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.service-details p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.separator-line {
    height: 1px;
    background: #eee;
    margin: 40px 0;
    width: 100%;
}

/* --- Specyfikacja Kontenerów (Karty) --- */
.specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.spec-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
}

.spec-icon {
    min-width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.spec-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.spec-info .badge {
    font-size: 0.75rem;
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Siatka Pojemników --- */
.bins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.bin-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
}

.bin-card i {
    font-size: 2.5rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    opacity: 0.5;
}

.bin-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.bin-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* --- Sidebar (Prawa kolumna) --- */
.sidebar-gallery {
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    top: 100px; /* Przyklejenie podczas scrollowania */
}

.gallery-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-grid figure {
    margin: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s, filter 0.3s;
    display: block;
    cursor: zoom-in; /* Kursor lupy */
}

.gallery-grid img:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.gallery-grid figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.75rem;
    padding: 5px;
    text-align: center;
}

.sidebar-cta {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
}

.sidebar-cta h4 {
    margin-bottom: 10px;
}

.btn.full-width {
    width: 100%;
    margin-top: 15px;
}

/* --- Lightbox Modal (Powiększanie zdjęć) --- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(8px);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 200, 81, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* --- RESPONSYWNOŚĆ (Merged) --- */
@media (max-width: 1024px) {
    /* Style strony głównej */
    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 60px; 
    }
    .hero-content h1 { font-size: 3.2rem; }
    .hero-content p { margin: 0 auto 40px auto; }
    .hero-visual {
        max-width: 360px;
        width: 100%;
        aspect-ratio: 1 / 1;
        margin: 0 auto 40px;
    }
    .hero-img-popout {
        width: 100%;
        max-width: 360px;
        aspect-ratio: 1 / 1;
        border-width: 6px;
        transform: none !important;
        animation: driveInMobile 1.2s forwards;
    }
    @keyframes driveInMobile {
        0% { opacity: 0; transform: scale(0.6) translateY(40px); }
        100% { opacity: 1; transform: scale(1) translateY(0); }
    }
    .circle-bg {
        width: 130%;
        height: 130%;
    }
    .hero-badge { 
        left: 50%; 
        transform: translateX(-50%);
        bottom: -20px; 
        width: 90%;
        max-width: 400px;
        min-width: auto; 
        justify-content: center;
        padding: 15px 20px;
        box-sizing: border-box;
        animation: fadeInUpMobile 0.8s ease-out forwards;
        animation-delay: 1s;
    }
    @keyframes fadeInUpMobile {
        from { opacity: 0; transform: translate(-50%, 20px); }
        to { opacity: 1; transform: translate(-50%, 0); }
    }
    .features-grid, .offer-grid { grid-template-columns: 1fr 1fr; }
    .split-grid { grid-template-columns: 1fr; gap: 50px; }
    .gradient-box { flex-direction: column; text-align: center; gap: 40px; padding: 50px 30px; }
    .gradient-content-left { width: 100%; align-items: center; }
    .stats-grid-6 { width: 100%; grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat-item-box { text-align: center; } 
    .footer-contact-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-left { align-items: center; }
    .footer-right { align-items: center; text-align: center; }
    .contact-list-right li { justify-content: center; }
    .footer-socials-right { justify-content: center; }
    .app-grid { grid-template-columns: 1fr; }
    .app-content { text-align: center; }
    .app-store-badges { justify-content: center; }

    /* Style podstrony na tablecie */
    .content-grid-sidebar {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Style strony głównej */
    .burger { display: block; }
    .nav-links {
        position: fixed; right: -100%; top: 0; height: 100vh; background-color: #fff;
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        width: 100%; transition: 0.4s ease-in-out; z-index: 1000; gap: 30px;
        overflow-y: auto; padding: 40px 0;
    }
    .nav-links.active { right: 0; }
    .nav-link { font-size: 1.4rem; font-weight: 700; flex-direction: column; color: #1a1a1a; }
    .nav-link i { display: none; } 
    .dropdown-menu {
        position: static; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; border: none;
        text-align: center; padding: 0; display: block; margin-bottom: 20px;
    }
    .dropdown-menu li a { font-size: 1.1rem; color: #666; padding: 5px 0; }
    .nav-btn-desktop { display: none; }
    .hero { padding-top: 120px; padding-bottom: 60px; min-height: auto; }
    .hero-content h1 { font-size: 2.5rem; margin-bottom: 20px; }
    .hero-visual { 
        max-width: 300px;
        margin-bottom: 40px; 
    }
    .circle-bg {
        width: 140%;
        height: 140%;
    }
    .features-grid, .offer-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-card { text-align: center; }
    .icon-box { margin: 0 auto 20px auto; }
    .stats-grid-6 { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }

    /* Style podstrony na mobile */
    .page-header {
        padding: 130px 0 60px 0;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .hero-visual {
        max-width: 480px;
    }
    .hero-content h1 {
        font-size: 3.2rem;
    }
}
/* =========================================
   DODATEK: Style dla list w treści podstron
   ========================================= */
.split-grid ul,
.service-details ul {
    list-style-type: disc; /* Przywraca kropki */
    padding-left: 25px;    /* Wcięcie listy */
    margin-top: 15px;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.split-grid ul li,
.service-details ul li {
    margin-bottom: 10px; /* Odstęp między punktami */
}

/* Opcjonalnie: jeśli chcesz, aby obrazki na tych podstronach
   też się powiększały po kliknięciu (jak w sidebarze) */
.split-image img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}
.split-image img:hover {
    transform: scale(1.02);
}
         /* --- STYLE DLA PORADNIKA SEGREGACJI --- */

        /* Zmienne kolorów pojemników */
        :root {
            --bin-blue: #2980b9;    /* Papier */
            --bin-green: #27ae60;   /* Szkło */
            --bin-yellow: #f1c40f;  /* Metale i tworzywa */
            --bin-brown: #795548;   /* Bio */
            --bin-black: #2c3e50;   /* Zmieszane */
        }

        .waste-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px auto;
        }

        /* Kontener kart */
        .waste-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        /* Karta Odpadu */
        .waste-card {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid #eee;
            transition: transform 0.3s;
        }
        
        /* Pasek koloru na górze */
        .waste-card-top {
            height: 8px;
            width: 100%;
        }

        /* Nagłówek karty z ikoną */
        .waste-header {
            display: flex;
            align-items: center;
            padding: 30px 40px;
            border-bottom: 1px solid #f5f5f5;
            gap: 25px;
        }

        .waste-icon-box {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2rem;
            flex-shrink: 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .waste-header h2 {
            margin: 0;
            font-size: 1.8rem;
            color: #1a1a1a;
        }
        
        .waste-header span {
            display: block;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.6;
            margin-bottom: 5px;
            font-weight: 600;
        }

        /* Treść karty - Grid */
        .waste-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding: 40px;
            gap: 40px;
        }

        .waste-column h3 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .waste-column p {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 0.95rem;
            margin: 0;
        }

        /* Stylizacja TAK / NIE */
        .text-yes { color: var(--bin-green); }
        .text-no { color: #e74c3c; }

        .waste-note {
            background: #fcfcfc;
            padding: 20px 40px;
            border-top: 1px solid #eee;
            font-size: 0.9rem;
            color: #555;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .waste-note i {
            color: var(--primary);
            font-size: 1.2rem;
        }

        /* Warianty Kolorystyczne */
        /* Papier */
        .card-blue .waste-card-top { background: var(--bin-blue); }
        .card-blue .waste-icon-box { background: var(--bin-blue); }
        .card-blue .waste-header span { color: var(--bin-blue); }

        /* Szkło */
        .card-green .waste-card-top { background: var(--bin-green); }
        .card-green .waste-icon-box { background: var(--bin-green); }
        .card-green .waste-header span { color: var(--bin-green); }

        /* Plastik */
        .card-yellow .waste-card-top { background: var(--bin-yellow); }
        .card-yellow .waste-icon-box { background: var(--bin-yellow); color: #333; } /* Ciemna ikona dla kontrastu */
        .card-yellow .waste-header span { color: #d4ac0d; }

        /* Bio */
        .card-brown .waste-card-top { background: var(--bin-brown); }
        .card-brown .waste-icon-box { background: var(--bin-brown); }
        .card-brown .waste-header span { color: var(--bin-brown); }

        /* Zmieszane */
        .card-black .waste-card-top { background: var(--bin-black); }
        .card-black .waste-icon-box { background: var(--bin-black); }
        .card-black .waste-header span { color: var(--bin-black); }

        /* Responsywność */
        @media (max-width: 768px) {
            .waste-header { flex-direction: column; text-align: center; padding: 30px 20px; }
            .waste-content { grid-template-columns: 1fr; gap: 30px; padding: 30px 20px; }
            .waste-note { padding: 20px; flex-direction: column; text-align: center; }
        }
        
         /* Styl dla mapy na podstronie oddziału */
        .branch-map-wrapper {
            margin-top: 60px;
            height: 450px;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }
        .branch-map-wrapper iframe {
            width: 100%; height: 100%; border: 0;
        }
        
        /* Mały box kontaktowy w treści */
        .branch-contact-box {
            background: #f8f9fa;
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin-top: 30px;
            border-radius: 0 10px 10px 0;
        }
        .branch-contact-box h4 { font-size: 1.1rem; margin-bottom: 10px; }
        .branch-contact-box ul li { margin-bottom: 8px; display: flex; gap: 10px; align-items: center; }
        .branch-contact-box i { color: var(--primary); }
        
        
        /* 1. Poprawa ogólnej typografii i odstępów w treści */
.page-content {
    padding: 80px 0; /* Większy margines góra-dół dla całej sekcji */
    line-height: 1.8;
    color: #444;
}

/* 2. Stylizacja Nagłówka H2 w treści */
.content-area h2.wp-block-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
}

/* 3. Estetyka Zdjęcia (Efekt Base) */
.wp-block-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Miękki, nowoczesny cień */
    transition: transform 0.3s ease;
}

.wp-block-image img:hover {
    transform: translateY(-5px); /* Delikatna interakcja po najechaniu */
}

/* 4. Poprawa układu kolumn (Odstępy) */
.wp-block-columns {
    gap: 50px !important; /* Większy odstęp między tekstem a zdjęciem */
    margin-bottom: 60px !important;
}

/* 5. Stylizacja Mapy Google */
.wp-block-columns iframe {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    filter: grayscale(0.2); /* Lekkie stonowanie mapy, by pasowała do designu */
    transition: filter 0.3s ease;
}

.wp-block-columns iframe:hover {
    filter: grayscale(0);
}

/* 6. Responsywność dla telefonów */
@media (max-width: 768px) {
    .page-content {
        padding: 40px 0;
    }
    
    .content-area h2.wp-block-heading {
        font-size: 1.8rem;
    }
    
    .wp-block-columns {
        gap: 30px !important;
    }
}

/* 7. Dodanie subtelnego tła dla sekcji mapy (opcjonalnie) */
.page-content .wp-block-columns:last-of-type {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 30px;
    margin-top: 40px;
}

/* Dodanie marginesów między akapitami w sekcji treści */
.content-area p {
    margin-top: 0;
    margin-bottom: 1.5rem; /* Odstęp o wielkości 1.5 wysokości linii */
    font-size: 1.1rem;      /* Opcjonalnie: delikatnie większa czcionka dla czytelności */
}

/* Usuwamy margines z ostatniego akapitu, aby nie psuł stopki sekcji */
.content-area p:last-child {
    margin-bottom: 0;
}

/* Stylizacja list (jeśli ich użyjesz w przyszłości) */
.content-area ul, 
.content-area ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.content-area li {
    margin-bottom: 0.5rem;
}
    /* --- STYLE SPECYFICZNE DLA KONTAKTU --- */
        
        /* Intro z danymi firmy */
        .company-meta {
            text-align: center;
            margin-bottom: 60px;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 20px;
            border: 1px solid #eee;
        }
        .company-meta h2 { font-size: 1.8rem; margin-bottom: 10px; }
        .company-meta p { font-size: 1.1rem; color: var(--text-muted); margin: 0; }
        .company-meta span.nip { font-weight: 700; color: var(--text-light); margin: 0 10px; }

        /* Siatka Oddziałów */
        .contact-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 80px;
        }

        .contact-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid #eee;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 200, 81, 0.15);
            border-color: var(--primary);
        }

        .card-icon {
            width: 70px; height: 70px;
            background: rgba(0, 200, 81, 0.1);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 25px auto;
            color: var(--primary);
            font-size: 1.8rem;
            transition: 0.3s;
        }
        .contact-card:hover .card-icon {
            background: var(--primary);
            color: #fff;
            transform: scale(1.1);
        }

        .contact-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
        .contact-card p { color: var(--text-muted); margin-bottom: 10px; font-size: 0.95rem; line-height: 1.6; }
        .contact-card strong { color: #333; }
        .contact-card a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
        .contact-card a:hover { color: var(--primary); }

        /* Sekcja Formularza i Mapy */
        .contact-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Formularz */
        .form-wrapper {
            background: #fff;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
            border: 1px solid #eee;
        }
        .form-group { margin-bottom: 20px; }
        .form-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: #333; }
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border-radius: 12px;
            border: 2px solid #f0f0f0;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: 0.3s;
            background: #fbfbfb;
            outline: none;
        }
        .form-control:focus {
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 200, 81, 0.1);
        }
        textarea.form-control { resize: vertical; min-height: 120px; }
        
        .checkbox-wrapper {
            display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--text-muted);
            margin-bottom: 25px;
        }
        .checkbox-wrapper input { margin-top: 4px; accent-color: var(--primary); }

        /* Mapa */
        .map-wrapper {
            height: 100%;
            min-height: 550px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
            position: relative;
        }
        .map-wrapper iframe {
            width: 100%; height: 100%; border: 0; filter: grayscale(10%);
        }

        /* Responsywność */
        @media (max-width: 1024px) {
            .contact-cards-grid { grid-template-columns: 1fr 1fr; }
            .contact-split { grid-template-columns: 1fr; }
            .map-wrapper { min-height: 400px; }
        }
        @media (max-width: 768px) {
            .contact-cards-grid { grid-template-columns: 1fr; }
            .form-wrapper { padding: 25px; }
        }
                .social-link-fb {
                    margin-left: 15px;
                    /* Odstęp od telefonu */
                    font-size: 20px;
                    /* Rozmiar ikonki */
                    color: #333;
                    /* Kolor ikonki (zmień na swój) */
                    text-decoration: none;
                }
        
                .social-link-fb:hover {
                    color: #1877F2;
                    /* Kolor po najechaniu (niebieski FB) */
                }