* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    /* Global font update */
}

/* ... existing body styles ... */

/* ===== OFERTA STYLES ===== */
.oferta-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    /* Black weight */
    font-size: 36px;
    margin-bottom: 30px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oferta-text ul li {
    font-weight: 400;
    /* Lighter font */
    line-height: 2;
    /* Increased line-height */
    color: #444;
}

.oferta-text ul li::before {
    color: #333;
    /* Graphite checkmarks */
}

.offer-footer-block {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 14px;
    color: #666;
}

.offer-slogan {
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a14a;
}

.offer-website {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

/* Fix Logo Padding */
.logo {
    padding-left: 0;
    /* Align left */
}

/* ===== END OFERTA ===== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    height: 100%;
    /* Wymagane dla min-height: 100vh na body w niektorych przegladarkach */
}

body {
    background: #f5f5f5;
    color: #222;
    line-height: 1.6;
    display: flex;
    /* Sticky footer setup */
    flex-direction: column;
    min-height: 100vh;
}



/* ===== HEADER ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 60px;
    /* Reduced vertical padding */
    background: #0f0f0f;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo img {
    height: 50px;
    /* Reduced logo height */
}

.menu a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
}

.menu a:hover {
    color: #c9a14a;
}

.lang a {
    color: #c9a14a;
    text-decoration: none;
    font-weight: 600;
    margin: 0 4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* ===== HERO ===== */
/* ===== HERO ===== */
/* ... */

/* ... (istniejące style) ... */

@media (max-width: 768px) {
    .header {
        /* Zachowujemy row na header, żeby logo i hamburger były obok siebie */
        flex-direction: row;
        padding: 15px 20px;
        flex-wrap: wrap;
        /* Pozwala menu spaść niżej */
    }

    .hamburger {
        display: block;
        /* Pokaż hamburgera */
    }

    .menu {
        display: none;
        /* Ukryj menu domyślnie */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        /* Zaraz pod headerem */
        left: 0;
        background: #0f0f0f;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
        z-index: 999;
        border-top: 1px solid #333;
    }

    .menu.active {
        display: flex;
        /* Pokaż menu po kliknięciu */
    }

    .menu a {
        margin: 10px 0;
        display: block;
        padding: 10px;
        font-size: 18px;
    }

    /* Ukrycie paska języka w headerze na mobile jeśli chcemy, albo zostawiamy */
    /* Tutaj zostawiamy w header-right */

    .contact {
        flex-direction: column;
    }

    /* ... */
}

/* Tu kończymy media query dla mobilnego menu */

/* ===== HERO ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 85vh;
    padding: 80px 20px;
    color: #fff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-text {
    max-width: 1000px;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.subtitle {
    color: #c9a14a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Tekst opisu */
.hero p:not(.subtitle) {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

/* CTA Label */
.cta-label {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px !important;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.buttons .btn {
    display: inline-block;
    background: #c9a14a;
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    /* Pillow shape buttons */
    text-decoration: none;
    font-weight: 600;
    margin: 10px;
    border: 2px solid #c9a14a;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 161, 74, 0.4);
}

.buttons .btn:hover {
    background: transparent;
    color: #c9a14a;
    transform: translateY(-3px);
}

/* Usunięte stare style .hero-image */

/* ===== SEKCJE ===== */
.section {
    padding: 70px 60px;
    background: #fff;
}

.section.gray {
    background: #f0f0f0;
}

/* ===== DLACZEGO MY MODERN ===== */
.why-us-container {
    max-width: 1350px;
    margin: 0 auto;
}

.why-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 kolumny na desktopie */
    gap: 50px;
}

.why-row-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.why-row-icon {
    font-size: 40px;
    min-width: 70px;
    height: 70px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    color: #c9a14a;
    /* Złoty akcent */
}

.why-row-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #222;
}

.why-row-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-rows {
        grid-template-columns: 1fr;
        /* 1 kolumna na mobile */
        gap: 30px;
    }
}

/* ===== OFERTA ===== */

/* ===== OFERTA LAYOUT ===== */
/* ===== OFERTA LAYOUT ===== */
.oferta-container-modern {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.oferta-text {
    flex: 1;
}

.oferta-text ul {
    list-style: none;
    /* Usunięcie standardowych kropek */
    margin-bottom: 40px;
    padding: 0;
}

.oferta-text ul li {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    color: #444;
    font-weight: 500;
}

.oferta-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
    /* Grafitowy ptaszek */
    font-size: 20px;
    font-weight: 900;
}

.oferta-photo {
    flex: 1;
    display: block;
}

.oferta-photo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .oferta-container-modern {
        flex-direction: column;
        padding: 30px;
        /* Mniejszy padding na mobile */
    }

    .oferta-photo {
        width: 100%;
    }

    .oferta-photo img {
        margin-bottom: 30px;
        /* Zmiana na bottom, bo zdjęcie jest teraz na górze */
    }
}

/* ===== O FIRMIE MODERN ===== */
.about-container-modern {
    max-width: 1350px;
    margin: 0 auto;
}

.about-content-wrapper {
    display: block;
}

.section-title-left {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #222;
    position: relative;
    padding-left: 20px;
    border-left: 6px solid #c9a14a;
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
}

.about-cta-text {
    font-weight: 700;
    color: #111 !important;
    margin-top: 40px;
    font-size: 19px !important;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Responsywność O Firmie */
@media (max-width: 900px) {
    .about-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-text-block p {
        text-align: left;
    }
}

/* Responsywność O Firmie */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== KONTAKT MODERN ===== */
.contact-container {
    max-width: 1350px;
    margin: 0 auto;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

/* Lewa kolumna: Dane */
.contact-details {
    flex: 1;
    padding-top: 44px;
    /* Wyrównanie do formularza (40px padding + 4px border) */
}

.contact-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-row .icon {
    font-size: 22px;
    color: #c9a14a;
    min-width: 40px;
    /* Więcej miejsca dla ikony */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Wyśrodkowanie ikony w kontenerze */
    height: 30px;
    /* Stała wysokość */
}

.contact-row strong {
    display: block;
    font-size: 18px;
    color: #222;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-row p {
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Prawa kolumna: Formularz */
.contact-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #c9a14a;
    /* Techniczny akcent */
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    font-size: 16px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c9a14a;
}

.btn-submit {
    width: 100%;
    border-radius: 0;
    /* Bardziej techniczny, kwadratowy przycisk */
    font-weight: 700;
    letter-spacing: 1px;
    padding: 18px;
    border: none;
    cursor: pointer;
    background: #222;
    color: #fff;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c9a14a;
    color: #000;
}

@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}

/* ===== MAPA WIDE ===== */
.map-section {
    width: 100%;
    /* Standardowa pełna szerokość */
    height: 450px;
    margin-bottom: 0;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) contrast(1.1);
    display: block;
    /* Usuwa white-space pod iframe */
}

@media (max-width: 900px) {
    .contact-boxes {
        grid-template-columns: 1fr;
    }

    .map-section {
        height: 350px;
    }
}

/* ===== FOOTER ===== */
.footer {
    width: 100%;
    background: #0f0f0f;
    color: #aaa;
    text-align: center;
    padding: 50px 0;
    margin-top: 0;
}


/* ===== SEKCJA O FIRMIE (STYLES) ===== */
.about-text {
    max-width: 820px;
    margin-top: 30px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #333;
}

.about-text p:first-child {
    font-size: 18px;
    line-height: 1.85;
}

.about-text strong {
    color: #000;
    font-weight: 600;
}

#o-firmie {
    display: block;
}

#o-firmie .about-text {
    max-width: 820px;
    margin-top: 30px;
}

#o-firmie .about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #333;
}

#o-firmie .about-text p:first-child {
    font-size: 18px;
}

/* ===== RESPONSYWNOŚĆ (RWD) ===== */
@media (max-width: 900px) {
    .hero {
        padding: 60px 20px;
    }

    .why-us {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .oferta-image img {
        max-height: 300px;
        filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18)) contrast(1.05) brightness(0.97);
    }
}

@media (max-width: 768px) {
    .header {
        gap: 10px;
        padding: 10px 20px;
    }

    .menu a {
        margin-left: 0;
    }

    .contact {
        flex-direction: column;
    }

    .contact-info,
    .contact-map {
        width: 100%;
        flex: auto;
    }

    .section {
        padding: 40px 20px;
        /* Mniejszy padding na tabletach/telefonach */
    }

    .oferta-image img {
        max-height: 260px;
    }

    .hero {
        padding: 100px 20px 60px;
        /* Więcej miejsca u góry na menu, mniej po bokach */
        min-height: auto;
        /* Nie wymuszaj 85vh na małych ekranach */
        height: auto;
        padding-top: 120px;
        /* Żeby treść nie wchodziła pod header */
    }
}

@media (max-width: 600px) {

    /* 1. Dlaczego My - mniejsze napisy */
    .why-us {
        grid-template-columns: 1fr;
    }

    .why-row-text h3 {
        font-size: 18px;
    }

    .why-row-text p {
        font-size: 14px;
    }

    /* 2. Hero - mniejsze napisy */
    .hero h1 {
        font-size: 26px;
        /* Zmniejszone z 28px */
        line-height: 1.3;
    }

    .subtitle {
        font-size: 16px;
    }

    .hero p {
        font-size: 15px !important;
    }

    /* 3. Oferta - zmiana kolejności (Zdjęcie pod listą, nad sloganem) */
    .oferta-container-modern {
        display: grid;
        /* Grid zamiast Flex dla swobody kolejności */
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .oferta-text {
        display: contents;
        /* Dzieci stają się elementami Grida */
    }

    /* Kolejność elementów w Gridzie */
    .oferta-text h2.section-title-left {
        order: 1;
        margin-bottom: 20px;
    }

    .oferta-text ul {
        order: 2;
        margin-bottom: 20px;
    }

    .oferta-photo {
        order: 3;
        margin-bottom: 20px;
    }

    .oferta-photo img {
        max-height: none;
        width: 100%;
        margin-bottom: 0;
    }

    .offer-footer-block {
        order: 4;
        margin-top: 10px;
    }

    /* 4. O firmie - mniejsza czcionka całego tekstu */
    .about-text p {
        font-size: 15px;
        /* Zmniejszone z 17px */
        line-height: 1.6;
    }

    .section-title-left {
        font-size: 24px;
    }

    /* 5. Kontakt i Formularz - responsywność */
    .contact-form {
        padding: 25px 15px;
        /* Mniejszy padding wewnętrzny */
        width: 100%;
        margin: 0 -10px;
        /* Lekkie rozszerzenie na boki (negative margin hack dla optycznego powiększenia na mobile) */
        width: calc(100% + 20px);
        border-radius: 0;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }

    .btn-submit {
        padding: 15px;
        font-size: 14px;
    }

    .contact-details {
        padding-top: 20px;
        /* Mniejszy odstęp */
    }

    /* Inne */
    .buttons .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin: 10px 0;
        padding: 14px 20px;
        font-size: 14px;
    }

    .map-section {
        height: 300px;
    }

    .footer {
        padding: 30px 20px;
    }
}

/* ===== COOKIES BANNER ===== */
/* ===== COOKIES MODAL ===== */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Ciemne tło pod spodem */
    z-index: 10000;
    display: none;
    /* Domyślnie ukryty */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-banner.show {
    display: flex;
    /* Pokaż jako Flex (wyśrodkowanie) */
}

.cookie-content {
    background: #fff;
    color: #333;
    padding: 40px;
    max-width: 500px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 4px solid #c9a14a;
    /* Złoty akcent */
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #c9a14a;
    font-weight: 600;
}

.btn-cookie {
    background: #c9a14a;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: background 0.3s;
    width: 100%;
    /* Pełna szerokość przycisku */
}

.btn-cookie:hover {
    background: #b08d40;
}

.btn-cookie {
    background: #c9a14a;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

/* Responsywność Banera */
@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-cookie {
        width: 100%;
    }
}