/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 {
    font-weight: 900;
    font-size: 2.5rem;
}

h2 {
    font-weight: 800;
    font-size: 2rem;
}

h3 {
    font-weight: 700;
    font-size: 1.5rem;
}

html, body {
    overflow-x: hidden; /* usuwa dolny poziomy scrollbar */
}

/* Splash (tylko strona główna) */
.splash-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: opacity 420ms ease, visibility 420ms ease;
}

.splash-overlay__logo {
    width: min(620px, 82vw);
    height: auto;
    display: block;
}

.splash-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.is-splash-active {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .splash-overlay {
        transition: none;
    }
}

/* Slider jest absolutny (nie rezerwuje miejsca) — ta wartość jest ustawiana w JS,
   żeby treść strony zaczynała się realnie POD sliderem */
main {
    padding-top: var(--hero-carousel-push, 0px);
}

/* Na stronach bez slidera (jak cennik, kontakt) upewnij się, że nie ma padding-top */
body:not(:has(.hero-carousel)) main,
body:not(:has([data-carousel-track])) main {
    padding-top: 0 !important;
}

/* Safety: images should never overflow their containers */
img {
    max-width: 100%;
    height: auto;
}

/* Reveal on scroll */
[data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* For pages loaded directly (like /cennik/), show content immediately if in viewport */
.pricing-section[data-reveal],
.contact-page[data-reveal],
.about-section[data-reveal]:first-of-type {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-top {
    background-color: #e6e6e6; /* wyszarzony pasek */
    color: #bbbbbb;
    padding: 6px 0; /* niższy pasek */
}

.header-top .header-info {
    flex-wrap: nowrap;
    gap: 12px;
}

.header-top .header-address strong,
.header-top .header-cta-link {
    font-size: 13px;
    line-height: 1.2;
}

/* W top-barze nie chcemy "blokowego" strong, bo podbija wysokość */
.header-top .header-address strong {
    display: inline;
}

.header-top .header-cta {
    padding-left: 12px;
}

/* Top menu  */
.top-menu {
    list-style: none;
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-address strong,
.header-phone strong,
.header-email strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.header-address strong {
    margin-bottom: 0;
    font-weight: 600;
}

.header-address span,
.header-phone span,
.header-email span {
    font-size: 14px;
}

.header-cta {
    margin-left: auto;
    padding-left: 20px;
}

.header-cta-link {
    color: #bbbbbb;
    text-decoration: none;
    font-weight: 500;
    text-transform: none;
    font-size: 12px; /* mniejsza czcionka jak w top-menu */
}

.header-cta-link:hover {
    text-decoration: underline;
}

.header-contact {
    display: flex;
    gap: 30px;
}

.header-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    flex-wrap: nowrap; /* wszystko w jednej linii na desktopie */
}

/* Ikony/kontakt po prawej od logo  */
.header-widgets {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 0;
    padding-left: 0;
    max-width: 100%;
    flex-wrap: nowrap; /* wszystko w jednej linii */
    justify-content: center;
    min-width: 0;
}

/* Na desktopie nie zawijamy */
.header-widgets .widget-icon-box {
    flex: 0 0 auto;
    min-width: 0;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
}

.icon-box i.fa {
    color: #9a9a9a; /* bardziej wyszarzone ikony */
    width: 28px;
}

.icon-box__title {
    font-size: 14px;
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
}

.icon-box__subtitle {
    font-size: 13px;
    color: #7f8c8d;
}

.icon-box__subtitle a {
    color: inherit;
    text-decoration: none;
}

.icon-box__subtitle a:hover {
    text-decoration: underline;
}

/* Social icons usunięte */

/* Jeśli robi się za ciasno: logo na środek, dane pod logo */
@media (max-width: 1100px) {
    .header-bottom {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .header-bottom .logo {
        width: 100%;
        margin-left: 0; /* bez wysuwania poza container */
        display: flex;
        justify-content: center;
    }

    .header-widgets {
        width: 100%;
        padding-left: 0;
        justify-content: center;
        flex-wrap: wrap; /* dane mogą się łamać pod logo */
    }
}


/* Menu ma być w pasku poniżej logo */
.navigation {
    padding: 10px 0 0 0; /* bez dolnego luzu między menu a sliderem */
    position: relative;
    z-index: 20; /* menu zawsze nad sliderem */
}

/* Brand (logo + nazwa) pod górnym paskiem */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 6px; /* napis bliżej logo */
    text-decoration: none;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.brand-logo {
    width: 374px; /* 2x */
    height: auto;
    max-height: 112px; /* 2x */
    object-fit: contain;
}

.brand-name {
    font-size: 28px;
    color: #2c3e50;
    font-weight: bold;
    line-height: 1;
}

/* Wyrównanie startu logo do startu tekstu w top-barze */
.header-bottom .logo {
    padding-left: 0;
    margin-left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 480px) {
    .header-bottom .logo {
        margin-left: 0; /* bez ryzyka poziomego scrolla na małych ekranach */
    }
}

/* usunięto logo z navbara – jest w brand po lewej */

.navigation--main {
    list-style: none;
    display: flex;
    gap: 0; /* brak przerw między prostokątami */
    align-items: center;
    justify-content: center; /* wyśrodkuj menu */
    flex-wrap: wrap;
}

.navigation--main a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.navigation--main a:hover {
    color: #3498db;
}

/* Kafelki menu (czarne prostokąty) */
.navigation--main > li > a {
    display: block;
    padding: 32px 53px; /* -25% wysokości (pion) */
    background: #222; /* ciemny szary */
    color: #bbbbbb; /* szary tekst na czarnym */
    border-radius: 0;
    font-weight: 700; /* pogrubienie */
    position: relative; /* dla strzałki OFERTA */
}

/* Desktop: kafelki mają wypełnić cały pasek bez luzu po bokach */
@media (min-width: 769px) {
    .navigation--main {
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
    }

    .navigation--main > li {
        flex: 1 1 0;
    }

    .navigation--main > li > a {
        width: 100%;
        text-align: center;
        white-space: nowrap; /* żeby żółty kafelek nie łamał się na 2 linie */
    }
}

.navigation--main > li > a:hover {
    color: #bbbbbb;
    background: #2a2a2a;
}

/* Strona główna (aktywny element) na żółto */
.navigation--main > li.current-menu-item > a,
.navigation--main > li.current_page_item > a {
    background: #fcc71f;
    color: #000; /* czarny tekst na żółtym */
}

.navigation--main li.menu-item-has-children {
    position: relative;
}

.navigation--main li.menu-item-has-children:hover .sub-menu {
    display: block;
}

/* Strzałka pod "OFERTA" sugerująca rozwijane menu */
.navigation--main li.menu-item-has-children > a::after {
    content: "▼";
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    font-size: 10px;
    line-height: 1;
    opacity: 0.9;
    pointer-events: none;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fcc71f; /* żółty jak "Strona główna" */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 250px;
    padding: 10px 0;
    z-index: 1000;
    list-style: none; /* bez kropek w sub-menu */
}

.sub-menu li {
    margin: 0;
    list-style: none; /* bez kropek przy elementach */
}

.sub-menu a {
    display: block;
    padding: 10px 20px;
    text-transform: none;
    font-size: 13px;
    color: #222; /* ciemny szary jak prostokąty */
    font-weight: 700; /* pogrubienie */
}

.sub-menu a:hover {
    background: rgba(0,0,0,0.08);
    color: #222;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* Full-width hero carousel */
.hero-carousel {
    width: 100%;
}

/* Slider ma być nad header-top/header-bottom, ale POD menu z kafelkami */
/* Na desktop: absolute position względem header, aby był zawsze w tym samym miejscu pod menu */
@media (min-width: 769px) {
    .header {
        position: relative;
    }
    
    .hero-carousel {
        position: absolute;
        left: 0;
        right: 0;
        top: var(--hero-carousel-top, 0px);
        z-index: 5;
        /* Slider jest absolute względem header, więc nie porusza się podczas scrollowania */
    }
}

/* Na mobile: relative position (normalne zachowanie) */
@media (max-width: 768px) {
    .hero-carousel {
        position: relative;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1;
    }
}

.header-top,
.header-bottom {
    position: relative;
    z-index: 10;
    /* nie nadpisuj tła header-top – ma pozostać szary pasek */
}

.hero-carousel__viewport {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    background: #000;
    z-index: 10;
    transform: none;
    margin-bottom: 0;
}

.hero-carousel__track {
    display: flex;
    transition: transform 450ms ease;
    will-change: transform;
}

.hero-carousel__slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
}

.hero-carousel__slide img {
    display: block;
    width: 100%;
    height: clamp(420px, 60vh, 820px); /* większe zdjęcia */
    object-fit: cover;
}

/* Karta informacyjna na slajdzie (po lewej, ~1/3 szerokości) */
.carousel-content {
    position: absolute;
    left: clamp(48px, 10vw, 160px); /* jeszcze bardziej w prawo */
    top: 50%;
    transform: translateY(-50%);
    width: min(520px, 34vw);
    background: rgba(34, 34, 34, 0.88); /* ciemny grafit, półprzezroczysty */
    color: #fff;
    padding: 28px 28px;
    border-radius: 4px; /* delikatne zaokrąglenie */
}

.jumbotron__category h6 {
    color: #fcc71f;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    margin: 0 0 10px 0;
}

/* Żółta linia pod małym nagłówkiem */
.jumbotron__category h6::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #fcc71f;
    margin-top: 10px;
}

.jumbotron__title p {
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: clamp(26px, 2.6vw, 30px);
    line-height: 1.1;
    margin: 14px 0 14px 0;
}

.jumbotron__content p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 16px 0;
}

/* Przycisk "Więcej" w karcie */
.carousel-content .btn.btn-primary {
    background: #fcc71f;
    color: #111;
    border: 0;
}

.carousel-content .btn.btn-primary:hover {
    background: #e2b11b;
}

/* Overlap realizujemy na .hero-carousel__viewport (transform),
   żeby nie zmieniać wysokości slajdera ani nie "ucinać" go wizualnie. */

.hero-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 28px;
    line-height: 44px;
    cursor: pointer;
    user-select: none;
}

.hero-carousel__arrow:hover {
    background: rgba(0, 0, 0, 0.65);
}

.hero-carousel__arrow--prev {
    left: 16px;
}

.hero-carousel__arrow--next {
    right: 16px;
}

/* Services Grid */
.services-grid {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.services-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 10px;
}

.service-subtitle {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
}

.btn-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: #2980b9;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #fff;
}

.about-section h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 25px;
}

.about-section p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* Żółty przycisk jak na sliderze (do użycia poza sliderem) */
.btn-primary.btn-primary--yellow {
    background: #fcc71f;
    color: #111;
    border: 0;
}

.btn-primary.btn-primary--yellow:hover {
    background: #e2b11b;
}

/* Full-width CTA strip under home sections */
.cta-strip {
    width: 100%;
    background: #222; /* jak prostokąty menu */
    padding: 26px 0;
}

.cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-strip__text {
    margin: 0;
    color: #bbbbbb;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.cta-strip__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* Wyrównanie przycisków do tej samej wysokości w pasku CTA */
.cta-strip__actions > a.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-height: 46px;
    box-sizing: border-box;
    margin: 0; /* nadpisuje globalne margin-top z .btn-primary */
}

.btn-cta-secondary {
    display: inline-flex;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    background: transparent;
    color: #bbbbbb;
    border: 2px solid rgba(187, 187, 187, 0.6);
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}

/* Pulsowanie "Wycena online" jak rytm serca */
.pulse-heart {
    animation: siwter-heartbeat 1.35s ease-in-out infinite;
    transform-origin: center;
}

@keyframes siwter-heartbeat {
    0%   { transform: scale(1); }
    10%  { transform: scale(1.08); }
    20%  { transform: scale(1); }
    30%  { transform: scale(1.12); }
    45%  { transform: scale(1); }
    100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .pulse-heart {
        animation: none;
    }
}

/* Contact / quote form */
.contact-page {
    padding: 54px 0 70px;
    background: #fff;
}

.contact-page h2 {
    margin: 0 0 18px 0;
    font-size: 28px;
    font-weight: 900;
    color: #222;
}

.contact-map {
    padding: 54px 0 70px;
    background: #f8f9fa;
}

.contact-map h2 {
    margin: 0 0 30px 0;
    font-size: 28px;
    font-weight: 900;
    color: #222;
    text-align: center;
}

.map-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.form-grid__full {
    grid-column: 1 / -1;
}

.contact-form label span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #222;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.14);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(252, 199, 31, 0.9);
    box-shadow: 0 0 0 4px rgba(252, 199, 31, 0.18);
}

.messages {
    margin: 0 0 16px 0;
}

.message {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 700;
}

.message--success {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.25);
    color: #1f7a43;
}

.message--error {
    background: rgba(231, 76, 60, 0.10);
    border: 1px solid rgba(231, 76, 60, 0.22);
    color: #a62c21;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Kafelki oferty (2 rzędy po 3) */
.offer-tiles {
    padding: 46px 0 64px;
    background: #fff;
}

.offer-tiles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.offer-tile {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.offer-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.offer-tile__media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.offer-tile__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.offer-tile:hover .offer-tile__media::after {
    opacity: 1;
}

.offer-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-tile:hover .offer-tile__media img {
    transform: scale(1.1);
}

.offer-tile__body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 190px; /* żeby kafelki były równe */
}

.offer-tile__title {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: #222;
}

.offer-tile__text {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-tile__btn {
    align-self: flex-start;
    margin: 0;
}

@media (max-width: 992px) {
    .offer-tiles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .offer-tiles__grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.site-footer__top {
    background: #e6e6e6; /* jasny szary */
    padding: 54px 0 58px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.footer-title {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: #222;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    background: #fcc71f;
}

.footer-logo img {
    width: 160px;
    height: auto;
    display: block;
    margin: 0 0 12px 0;
}

.footer-text {
    margin: 0 0 14px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.65;
}

.footer-btn {
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #222;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact i.fa {
    color: #9a9a9a;
    width: 18px;
    margin-top: 2px;
}

.footer-contact a {
    color: #222;
    text-decoration: none;
    font-weight: 700;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.site-footer__bottom {
    background: #fcc71f;
    color: #111;
    padding: 14px 0;
}

.site-footer__bottom p {
    margin: 0;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* About page */
.about-page {
    padding: 54px 0 70px;
    background: #fff;
}

.about-page__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 34px;
    align-items: start;
}

.about-page__media img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.about-page__content p {
    margin: 0 0 14px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 992px) {
    .about-page__grid {
        grid-template-columns: 1fr;
    }
}

/* Oferta: detale usługi (np. murarskie) */
.offer-detail .about-page__content h2 {
    margin: 0 0 14px 0;
    font-size: 28px;
    font-weight: 900;
    color: #222;
    position: relative;
    padding-bottom: 10px;
}

.offer-detail .about-page__content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 3px;
    background: #fcc71f;
}

.offer-detail .about-page__content h3 {
    margin: 18px 0 12px 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #222;
    text-transform: uppercase;
}

.offer-detail__pricebox {
    background: #f7f7f7;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 14px 16px;
}

.offer-detail__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.offer-detail__list li {
    position: relative;
    padding-left: 22px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.offer-detail__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #fcc71f;
    font-weight: 900;
}

@media (min-width: 900px) {
    .offer-detail__list {
        grid-template-columns: 1fr 1fr;
        column-gap: 22px;
    }
}

/* Gallery page */
.gallery-page {
    padding: 54px 0 70px;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    background: #f6f6f6;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-link {
    display: block;
    cursor: zoom-in;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.86);
    z-index: 5000;
    padding: 24px;
    align-items: center;
    justify-content: center;
}

.lightbox.is-open {
    display: flex;
}

.lightbox__img {
    max-width: min(1200px, 95vw);
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}

.lightbox__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 28px;
    line-height: 42px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

/* Remonty Section */
.remonty-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.remonty-section h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.remonty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.remonty-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.remonty-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.remonty-card h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
}

.remonty-card p {
    color: #555;
    line-height: 1.8;
}

.remonty-note {
    text-align: center;
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-buttons {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Opinions Section */
.opinions-section {
    padding: 60px 0;
    background-color: #fff;
}

.opinions-section h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.opinions-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 200px;
}

.opinion-slide {
    display: none;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.opinion-slide.active {
    display: block;
}

.opinion-slide blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.opinion-slide blockquote p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.opinion-slide cite {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    font-style: normal;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: #2980b9;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.partners-section h3 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.partner-item {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-weight: 600;
    color: #2c3e50;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ecf0f1;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #ecf0f1;
}

/* Page Header */
.page-header {
    background: #f7f7f7;
    color: #222;
    padding: 26px 0 22px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-header h1 {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 10px 0;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.page-header .subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #666;
    font-size: 13px;
    margin: 0;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    padding: 7px 12px;
}

.breadcrumb a {
    color: #222;
    text-decoration: none;
    font-weight: 400; /* bez pogrubienia, taki sam styl jak reszta */
}

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

.breadcrumb__sep {
    color: #fcc71f;
    font-weight: 900;
}

.breadcrumb [aria-current="page"] {
    color: #444;
    font-weight: 400; /* bez pogrubienia */
}

/* Gallery: tylko pasek breadcrumb na tle jak stopka */
.page-header.page-header--breadcrumb-only {
    background: linear-gradient(135deg, #e6e6e6 0%, #d4d4d4 50%, #e6e6e6 100%);
    padding: 18px 0;
    position: relative;
    overflow: hidden;
}

/* Animated Wave Pattern */
.page-header.page-header--breadcrumb-only::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(252, 199, 31, 0.03) 10px,
            rgba(252, 199, 31, 0.03) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(252, 199, 31, 0.02) 10px,
            rgba(252, 199, 31, 0.02) 20px
        );
    animation: waveMove 20s linear infinite;
    pointer-events: none;
}

/* SVG Wave at bottom */
.page-header.page-header--breadcrumb-only::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C300,100 600,20 900,60 C1050,80 1150,40 1200,60 L1200,120 L0,120 Z' fill='%23ffffff' opacity='0.8'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    pointer-events: none;
}

@keyframes waveMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, -100px -100px;
    }
}

/* Subtle shine effect */
.page-header.page-header--breadcrumb-only {
    background: 
        linear-gradient(135deg, rgba(252, 199, 31, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #e6e6e6 0%, #d4d4d4 50%, #e6e6e6 100%);
}

/* Enhanced breadcrumb styling */
.page-header.page-header--breadcrumb-only .breadcrumb {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08), 0 0 0 1px rgba(252, 199, 31, 0.2);
    transition: all 0.3s ease;
}

.page-header.page-header--breadcrumb-only .breadcrumb:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12), 0 0 0 1px rgba(252, 199, 31, 0.4);
    transform: translateY(-1px);
}

/* Page Title - główny nagłówek strony - tylko na mobile */
.page-title {
    display: none; /* Ukryj na desktop */
}

@media (max-width: 768px) {
    .page-title {
        display: block; /* Pokaż na mobile */
        font-size: 28px;
        font-weight: 900;
        color: #222;
        margin: 0 0 20px 0;
        padding-top: 15px;
        text-align: center;
    }
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background-color: #fff;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-block h3 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.content-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-block ul li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.8;
}

.cta-section {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Offer Items */
.offer-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.offer-item:last-child {
    border-bottom: none;
}

.offer-content h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
}

.offer-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 18px;
    font-weight: 600;
}

/* Pricing */
.pricing-info {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.pricing-info p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.pricing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-category {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pricing-category h3 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 15px;
}

.pricing-category p {
    color: #555;
    line-height: 1.8;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        max-height: 70vh;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 10000;
        padding: 0;
        margin: 0;
        overflow-y: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        border-top: 2px solid #fcc71f;
    }
    
    .navigation.mobile-active {
        display: block;
    }
    
    /* Header musi być relative, aby navigation było pozycjonowane względem niego */
    .header {
        position: relative;
    }
    
    /* Container z navigation - usuń ograniczenia */
    .header > .container:last-of-type {
        position: static;
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    
    /* Navigation pozycjonowane jako absolute względem header */
    .header > .container:last-of-type > .navigation {
        position: absolute;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100%;
    }
    
    /* Upewnij się, że navigation--main ma pełną szerokość */
    .navigation--main {
        width: 100%;
    }
    
    .navigation--main > li {
        width: 100%;
        box-sizing: border-box;
    }
    
    .navigation--main > li > a {
        width: 100%;
        box-sizing: border-box;
    }
    
    .navigation--main {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        justify-content: flex-start;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    /* Lista zamiast prostokątów */
    .navigation--main > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navigation--main > li > a {
        display: block;
        padding: 16px 20px;
        background: transparent;
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .navigation--main > li > a:hover {
        background: rgba(252, 199, 31, 0.2);
        color: #fcc71f;
        padding-left: 30px;
    }
    
    .navigation--main > li.current-menu-item > a,
    .navigation--main > li.current_page_item > a {
        background: rgba(252, 199, 31, 0.3);
        color: #fcc71f;
        border-left: 4px solid #fcc71f;
    }
    
    /* Usuń strzałkę z menu mobilnego */
    .navigation--main li.menu-item-has-children > a::after {
        display: none;
    }
    
    /* Usuń strzałkę ::before z mobile */
    .navigation--main li.menu-item-has-children > a::before {
        display: none;
    }
    
    /* Usuń dodatkowy padding, który był dla strzałki */
    .navigation--main li.menu-item-has-children > a {
        padding-right: 20px; /* Standard padding */
    }
    
    .navigation--main li.menu-item-has-children .sub-menu {
        position: static;
        display: none !important;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        padding: 0;
        margin: 0;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .navigation--main li.menu-item-has-children.mobile-submenu-open .sub-menu {
        display: block !important;
        max-height: 500px; /* Arbitrary large value for smooth transition */
    }
    
    .navigation--main li.menu-item-has-children .sub-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .navigation--main li.menu-item-has-children .sub-menu a {
        display: block;
        padding: 12px 20px 12px 40px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        text-transform: none;
        transition: all 0.3s ease;
    }
    
    .navigation--main li.menu-item-has-children .sub-menu a:hover {
        background: rgba(252, 199, 31, 0.15);
        color: #fcc71f;
        padding-left: 50px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .contact-map {
        padding: 40px 0 50px;
    }
    
    .contact-map h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
    
    /* Ukryj breadcrumb na mobile */
    .page-header.page-header--breadcrumb-only {
        display: none;
    }
    
    .header-widgets-desktop {
        display: flex;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding-left: 0;
        gap: 14px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .header-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid .container {
        grid-template-columns: 1fr;
    }
    
    .remonty-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

/* Sekcje na stronie głównej (pod sliderem) */
.home-sections {
    padding: 48px 0 60px;
    background: #fff;
}

.home-columns {
    display: flex;
    gap: 44px;
    align-items: flex-start;
}

.home-col {
    flex: 1 1 0;
    min-width: 0;
}

.home-col h2 {
    font-size: 28px;
    margin: 0 0 18px 0;
    color: #222;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.home-col h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 3px;
    background: #fcc71f; /* żółty jak w menu */
}

.home-col p {
    color: #555;
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.topic-block + .topic-block {
    margin-top: 22px;
}

.topic-block h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #222;
    font-weight: 900;
    position: relative;
    padding-left: 22px; /* miejsce na ptaszka */
}

.topic-block h3::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #fcc71f;
    font-weight: 900;
}

@media (max-width: 992px) {
    .home-columns {
        flex-direction: column;
        gap: 28px;
    }
}

/* ============================================
   ENHANCEMENTS - WOW EFFECTS
   ============================================ */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #fcc71f 0%, #ffd700 100%);
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 4px rgba(252, 199, 31, 0.3);
}

/* Floating Action Button (FAB) */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fcc71f 0%, #ffd700 100%);
    box-shadow: 0 4px 20px rgba(252, 199, 31, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease;
    text-decoration: none;
    color: #222;
    font-size: 24px;
}

.fab:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(252, 199, 31, 0.6);
}

.fab:active {
    transform: scale(0.95);
}

.fab__tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #222;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fab__tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #222;
}

.fab:hover .fab__tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .fab {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        font-size: 22px;
    }
    
    .fab__tooltip {
        display: none;
    }
}

/* Animated Statistics Counters */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card {
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #fcc71f;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: #555;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Gallery with Filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.gallery-filter-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: #fff;
    color: #555;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-filter-btn:hover {
    border-color: #fcc71f;
    color: #fcc71f;
    transform: translateY(-2px);
}

.gallery-filter-btn.active {
    background: #fcc71f;
    border-color: #fcc71f;
    color: #222;
    box-shadow: 0 4px 12px rgba(252, 199, 31, 0.3);
}

/* Masonry Layout for Gallery */
.gallery-grid.masonry {
    column-count: 3;
    column-gap: 20px;
}

.gallery-grid.masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

@media (max-width: 992px) {
    .gallery-grid.masonry {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .gallery-grid.masonry {
        column-count: 1;
    }
}

/* Lazy Loading - bez blur, tylko smooth transition */
.gallery-item img {
    transition: opacity 0.3s ease;
}

/* Enhanced Form Animations */
.contact-form input:focus,
.contact-form textarea:focus {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.contact-form label {
    position: relative;
}

.contact-form input:valid + .form-feedback,
.contact-form textarea:valid + .form-feedback {
    opacity: 0;
}

.contact-form input:invalid:not(:placeholder-shown) + .form-feedback,
.contact-form textarea:invalid:not(:placeholder-shown) + .form-feedback {
    opacity: 1;
}

.form-feedback {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 12px;
    color: #e74c3c;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Parallax Effect for Hero */
.hero-carousel__slide {
    will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-carousel__slide img {
        transition: transform 0.3s ease-out;
    }
}

/* Smooth Scroll Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.scroll-to-top.visible {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Hide header-top on mobile */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    /* Use flexbox order to show slider below header-bottom on mobile */
    .header {
        display: flex;
        flex-direction: column;
    }
    
    .header-bottom {
        order: 1;
        position: relative;
        z-index: 10;
        background: #fff;
    }
    
    .hero-carousel {
        order: 2;
        position: relative;
        z-index: 1;
        top: auto;
        margin-top: 0;
    }
    
    .navigation {
        order: 3;
    }
    
    /* Container z header-bottom - musi być relative dla pozycjonowania navigation */
    .header > .container:first-of-type {
        position: relative;
    }
    
    /* Container z navigation - usuń ograniczenia szerokości */
    .header > .container:last-of-type {
        position: static !important;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        order: 2;
    }
    
    /* Navigation pozycjonowane względem pierwszego kontenera (z header-bottom) */
    .header > .container:last-of-type > .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100vw;
    }
    
    /* Hamburger button should be visible on top */
    .mobile-menu-toggle {
        position: relative;
        z-index: 10000;
    }
    
    /* Reset main padding on mobile since slider is in normal flow */
    main {
        padding-top: 0;
    }
    
    /* Change carousel content to horizontal layout on mobile */
    .carousel-content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 16px 20px;
        background: rgba(34, 34, 34, 0.92);
        border-radius: 0;
    }
    
    .jumbotron__category h6 {
        font-size: 12px;
        margin: 0 0 6px 0;
    }
    
    .jumbotron__category h6::after {
        width: 30px;
        height: 1.5px;
        margin-top: 6px;
    }
    
    .jumbotron__title p {
        font-size: 18px;
        margin: 8px 0;
        line-height: 1.2;
    }
    
    .jumbotron__content p {
        font-size: 13px;
        line-height: 1.5;
        margin: 0 0 10px 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .carousel-content .btn.btn-primary {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Adjust hero carousel arrows for mobile */
    .hero-carousel__arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .hero-carousel__arrow--prev {
        left: 10px;
    }
    
    .hero-carousel__arrow--next {
        right: 10px;
    }
}

/* ============================================
   WSZYSTKIE ULEPSZENIA WIZUALNE
   ============================================ */

/* 1. TYPOGRAFIA - Lepsze rozmiary i odstępy */
p {
    line-height: 1.8;
    margin-bottom: 1.2em;
}

.content-block p,
.about-page__content p,
.offer-detail__content p {
    line-height: 1.85;
    margin-bottom: 1.3em;
}

/* 2. KOLORYSTYKA I GRADIENTY */
/* Gradienty w tle sekcji */
.about-section:nth-child(even) {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.about-section:nth-child(odd) {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Gradienty na przyciskach */
.btn-primary {
    background: linear-gradient(135deg, #fcc71f 0%, #e2b11b 100%);
    box-shadow: 0 4px 15px rgba(252, 199, 31, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e2b11b 0%, #d4a017 100%);
    box-shadow: 0 6px 20px rgba(252, 199, 31, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(252, 199, 31, 0.3);
}

/* Lepsze cienie dla głębi */
.about-section {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* 3. KARTY I ELEMENTY INTERAKTYWNE */
.offer-tile {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.offer-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.offer-tile__media::after {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offer-tile:hover .offer-tile__media::after {
    opacity: 1;
}

.offer-tile__media img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-tile:hover .offer-tile__media img {
    transform: scale(1.1);
}

/* Wizualne separatory */
.about-section + .about-section {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 60px;
}

/* 4. SLIDER/KARUZELA - Ulepszenia */
.hero-carousel__track {
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel__slide {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-carousel__slide.is-active {
    opacity: 1;
}

/* Wskaźniki paginacji */
.hero-carousel__pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.hero-carousel__pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-carousel__pagination-dot.active {
    background: #fcc71f;
    border-color: #fcc71f;
    transform: scale(1.2);
}

.hero-carousel__pagination-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Lepszy overlay na sliderze */
.carousel-content {
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Animacja tekstu w sliderze */
.carousel-content > * {
    animation: slideInUp 0.8s ease-out;
}

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

/* 5. GALERIA - Ulepszenia */
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Lightbox ulepszenia */
.lightbox {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.92);
}

.lightbox__img {
    animation: zoomIn 0.4s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox__close {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.lightbox__close:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: rotate(90deg) scale(1.1);
}

/* 6. FORMULARZ KONTAKTOWY - Ulepszenia */
.contact-form input,
.contact-form textarea {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #fcc71f;
    box-shadow: 0 0 0 3px rgba(252, 199, 31, 0.1);
    outline: none;
    transform: translateY(-2px);
}

.contact-form label {
    position: relative;
}

.contact-form label span::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #fcc71f;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form input:focus + span::before,
.contact-form textarea:focus + span::before {
    opacity: 1;
}

/* Ikony w polach formularza */
.contact-form input[type="text"],
.contact-form input[type="email"] {
    padding-left: 45px;
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 20px;
}

.contact-form input[type="text"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fcc71f'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.contact-form input[type="email"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fcc71f'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

/* 7. MENU NAWIGACYJNE - Ulepszenia */
.navigation--main > li > a {
    position: relative;
    transition: all 0.3s ease;
}

.navigation--main > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fcc71f, transparent);
    transition: transform 0.3s ease;
}

.navigation--main > li > a:hover::after,
.navigation--main > li.current-menu-item > a::after {
    transform: translateX(-50%) scaleX(1);
}

.navigation--main > li > a:hover {
    background: linear-gradient(180deg, #2a2a2a 0%, #1f1f1f 100%);
}

/* Submenu animacja */
.sub-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.navigation--main li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sub-menu li {
    transition: all 0.2s ease;
}

.sub-menu li:hover {
    background: rgba(252, 199, 31, 0.1);
    transform: translateX(5px);
}

/* 8. SEKCJE I LAYOUT - Ulepszenia */
.about-section {
    padding: 80px 0;
    margin-bottom: 0;
}

.about-section:first-child {
    padding-top: 100px;
}

/* Wizualne separatory z ikonami */
.about-section::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #fcc71f, transparent);
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* Alternujące tła */
.home-sections {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.cta-strip {
    background: linear-gradient(135deg, #fcc71f 0%, #e2b11b 100%);
    box-shadow: 0 4px 20px rgba(252, 199, 31, 0.3);
}

.cta-strip__text {
    color: #000 !important;
    font-weight: 700;
}

.cta-strip__actions .btn-primary.btn-primary--yellow {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.cta-strip__actions .btn-primary.btn-primary--yellow:hover {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
    color: #fff;
}

.cta-strip__actions .btn-cta-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.cta-strip__actions .btn-cta-secondary:hover {
    background: #fff;
    color: #000;
    border-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 9. PRZYCISKI CTA - Ulepszenia */
.btn-primary.btn-primary--yellow {
    background: linear-gradient(135deg, #fcc71f 0%, #e2b11b 100%);
    box-shadow: 0 4px 15px rgba(252, 199, 31, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary.btn-primary--yellow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary.btn-primary--yellow:hover::before {
    left: 100%;
}

.btn-primary.btn-primary--yellow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(252, 199, 31, 0.5);
}

.btn-cta-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* 10. ANIMACJE I MIKROINTERAKCJE */
[data-reveal] {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].is-visible {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* 11. IKONY W SEKCJACH */
.about-section h2::before,
.pricing-category h3::before {
    content: '✓';
    display: inline-block;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #fcc71f, #e2b11b);
    color: #000;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    margin-right: 15px;
    font-weight: 900;
    font-size: 18px;
    vertical-align: middle;
}

/* 12. CENNIK - Ulepszenia */
.pricing-category {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #fcc71f;
}

.pricing-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-category h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(252, 199, 31, 0.2);
}

.offer-detail__list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    padding-left: 25px;
    position: relative;
}

.offer-detail__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #fcc71f;
    font-weight: bold;
}

.offer-detail__list li:hover {
    background: rgba(252, 199, 31, 0.05);
    padding-left: 30px;
    transform: translateX(5px);
}

/* 13. STOPKA - Ulepszenia */
.site-footer__top {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    border-top: 4px solid #fcc71f;
}

.site-footer__top::before {
    display: none; /* Usuwamy żółtą linię na górze, bo jest border-top */
}

.footer-title {
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #fcc71f, transparent);
}

.footer-text {
    color: #555;
}

.footer-links li a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
    color: #333;
}

.footer-links li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #fcc71f;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: #fcc71f;
    padding-left: 25px;
}

.footer-links li a:hover::before {
    transform: translateX(5px);
}

.footer-contact li {
    transition: all 0.3s ease;
    padding: 10px 0;
    color: #333;
}

.footer-contact li:hover {
    transform: translateX(5px);
    color: #fcc71f;
}

.footer-contact li i {
    color: #fcc71f;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: #333;
}

.footer-contact a:hover {
    color: #fcc71f;
}

/* 14. OGÓLNE ULEPSZENIA */
.container {
    padding: 0 30px;
}

@media (min-width: 1200px) {
    .container {
        padding: 0 50px;
    }
}

/* Lepsze użycie białej przestrzeni */
.about-page__content,
.offer-detail__content {
    padding: 40px;
}

/* Wizualne akcenty */
.cta-strip__text {
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 15. EFEKTY SPECJALNE */
/* Glassmorphism dla kart */
.offer-tile__body {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* Subtelne tekstury */
.about-section {
    position: relative;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(252, 199, 31, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(252, 199, 31, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-section > .container {
    position: relative;
    z-index: 1;
}

/* Lepsze cienie dla głębi */
.offer-tile,
.pricing-category,
.service-card {
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.04);
}

/* Efekty blur */
.hero-carousel__arrow {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.4);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-section::before {
        width: 40px;
        height: 3px;
        margin-bottom: 30px;
    }
    
    .pricing-category {
        padding: 20px;
    }
    
    .offer-tile:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

