/* ==========================================================================
   1. BAZA, ZMIENNE I TYPOGRAFIA
   ========================================================================== */
:root {
    --primary-navy: #0A192F; 
    --accent-orange: #FF6B00; 
    --text-dark: #2D3748;
    --text-light: #E2E8F0;
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.1);
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

/* FIX: Blokada przesuwania strony na boki na smartfonach */
html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body { 
    /* Gradientowe tło podbijające efekt szkła */
    background: linear-gradient(135deg, #F0F4F8 0%, #D9E2EC 100%); 
    color: var(--text-dark); 
    line-height: 1.6; 
    padding-bottom: 0; 
    min-height: 100vh;
}

/* ==========================================================================
   2. PŁYWAJĄCY PRZYCISK AWARYJNY (FAB)
   ========================================================================== */
.fab-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-orange);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    z-index: 1100;
    transition: transform 0.3s ease;
}

.fab-call:hover { 
    transform: scale(1.1); 
}

/* ==========================================================================
   3. NAGŁÓWEK (GLASSMORPHISM) I NAWIGACJA
   ========================================================================== */
header { 
    background: rgba(255, 255, 255, 0.7); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky; 
    top: 0; 
    z-index: 100; 
}

.header-left {
    display: flex;
    align-items: center;
}

.logo-link { 
    display: block; 
    max-width: 200px; 
}

.logo-img { 
    width: 100%; 
    height: auto; 
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-contact-frame {
    display: flex; 
    align-items: center; 
    gap: 10px;
    border: 2px solid var(--accent-orange);
    padding: 10px 18px; 
    border-radius: 30px;
    text-decoration: none; 
    color: var(--primary-navy);
    font-weight: 700; 
    font-size: 16px;
    transition: all 0.3s ease;
}

.header-contact-frame:hover {
    background-color: var(--accent-orange);
    color: white;
}

.phone-icon { 
    font-size: 18px; 
}
/* ==========================================================================
   NAWIGACJA DESKTOP 2.0 - WERSJA PREMIUM
   ========================================================================== */
header {
    padding: 20px 5%; /* Więcej oddechu w pionie */
}

.nav-desktop {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* FIX: Zmiana na 5 kolumn */
    grid-template-rows: auto auto;
    gap: 15px 10px; /* FIX: Zmniejszone odstępy poziome, by pomieścić 5 elementów */
    margin: 0 10px; /* FIX: Zmniejszony margines, by dać więcej miejsca */
}

.nav-link {
    text-decoration: none;
    color: var(--primary-navy);
    font-size: 13px; /* FIX: Pomniejszona czcionka z 14px na 13px dla długich słów */
    font-weight: 900; 
    letter-spacing: 1px; /* FIX: Zmniejszone światło liter */
    padding: 12px 12px; /* FIX: Mniej pustej przestrzeni po bokach przycisku */
    border-radius: 15px;
    text-align: center;
    white-space: nowrap;
    
    /* EFEKT SZKŁA (BAZA) */
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(10, 25, 47, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    
    /* PŁYNNE PRZEJŚCIE */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* BAJER: EFEKT NAJECHANIA (GLOW + SCALE) */
.nav-link:hover {
    color: white;
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-5px) scale(1.05); /* Przycisk "wyskakuje" do przodu */
    box-shadow: 0 12px 25px rgba(255, 107, 0, 0.4); /* Pomarańczowa poświata */
}

/* BAJER: Delikatny błysk przy najechaniu */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

/* --- HAMBURGER I MOBILE MENU --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-navy);
    transition: 0.3s;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0; right: -100%; 
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    /* FIX: Menu nie "wypycha" strony gdy jest zamknięte */
    visibility: hidden;
}

.mobile-menu-overlay.active {
    right: 0;
    visibility: visible;
}

.mobile-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 90%;
    max-width: 400px;
}

.mobile-nav-btn {
    text-decoration: none;
    color: var(--primary-navy);
    border: 1px solid rgba(10, 25, 47, 0.1);
    background: white;
    padding: 20px 10px;
    text-align: center;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- Animacja hamburgera do X --- */
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================================
   4. SEKCJA HERO I STATUS NA ŻYWO
   ========================================================================== */
.hero { 
    text-align: center; 
    padding: 80px 20px; 
    background: linear-gradient(135deg, var(--primary-navy) 0%, #112B52 100%);
    color: white;
    border-radius: 0 0 40px 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-soft);
}

.hero h1 { 
    margin-bottom: 20px; 
    font-size: 38px; 
    font-weight: 800; 
    letter-spacing: -1px;
}

.hero p { 
    max-width: 600px; 
    margin: 0 auto 40px auto; 
    font-size: 18px; 
    opacity: 0.9; 
}

.btn-wycena { 
    background-color: white; 
    color: var(--primary-navy); 
    padding: 16px 32px; 
    text-decoration: none; 
    font-weight: 800; 
    border-radius: 30px; 
    font-size: 18px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-wycena:hover {
    transform: translateY(-3px);
}

/* --- STATUS NA ŻYWO (PULSUJĄCY ZNACZEK) --- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-badge.available .status-dot {
    background-color: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 2s infinite;
}

.status-badge.busy .status-dot {
    background-color: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* --- NOWY UKŁAD HERO DLA PODSTRON USŁUGOWYCH (SPLIT-SCREEN) --- */
.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    min-height: 60vh;
    background-color: var(--primary-navy);
    border-radius: 0 0 40px 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.service-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 10%;
    color: white;
    text-align: left;
}

.service-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.service-hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 500px;
}

.service-hero-image {
    position: relative;
    background-image: url('../img/hero-hydraulika.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; 
}

.service-hero-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, var(--primary-navy) 0%, rgba(10, 25, 47, 0) 100%);
}

/* ==========================================================================
   5. SEKCJA USŁUG (8 KAFELKÓW SZKLANYCH)
   ========================================================================== */
.services-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.section-title { 
    text-align: center; 
    color: var(--primary-navy); 
    margin-bottom: 40px; 
    font-size: 32px; 
    font-weight: 800; 
}

.grid-8 { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 30px; 
}

.glass-card-service {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: var(--text-dark) !important;
}

.glass-card-service:hover { 
    transform: translateY(-8px); 
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.1); 
}

.card-img { 
    width: 100%; 
    height: 200px; 
    background-color: #CBD5E0; 
    background-size: cover; 
    background-position: center;
}

.card-content { 
    padding: 25px; 
    flex-grow: 1;
}

.card-content h3 { 
    color: var(--primary-navy); 
    margin-bottom: 12px; 
    font-size: 20px; 
}

.card-content p { 
    color: #4A5568; 
    font-size: 15px; 
    line-height: 1.6; 
}

/* ==========================================================================
   6. SEKCJA DLACZEGO MOVILO (POWIĘKSZONA / SOFT UI)
   ========================================================================== */
.why-us-section {
    padding: 100px 20px; 
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: ''; position: absolute; top: 10%; left: 5%;
    width: 300px; height: 300px; background: rgba(255, 107, 0, 0.08);
    border-radius: 50%; filter: blur(60px); z-index: 1;
}
.why-us-section::after {
    content: ''; position: absolute; bottom: 10%; right: 5%;
    width: 300px; height: 300px; background: rgba(10, 25, 47, 0.06);
    border-radius: 50%; filter: blur(60px); z-index: 1;
}

.why-us-container {
    max-width: 1100px; 
    margin: 0 auto; 
    position: relative; 
    z-index: 2;
}

.why-subtitle {
    text-align: center; 
    color: #4A5568; 
    margin-top: -30px; 
    margin-bottom: 60px; 
    font-size: 18px;
}

.glass-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none; 
    border-radius: 24px;
    padding: 50px 30px; 
    text-align: center;
    box-shadow: 0 10px 40px rgba(10, 25, 47, 0.06); 
    transition: transform 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
}

.glass-icon {
    width: auto; 
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 30px auto; 
    color: var(--primary-navy);
}

.glass-icon svg {
    width: 64px; 
    height: 64px;
    stroke-width: 2.5; 
}

.glass-card h3 { 
    color: var(--primary-navy); 
    margin-bottom: 20px; 
    font-size: 24px; 
    font-weight: 800; 
}

.glass-card p { 
    color: #4A5568; 
    font-size: 16px; 
    line-height: 1.7; 
}

/* ==========================================================================
   7. KALKULATOR I FORMULARZE
   ========================================================================== */
.calculator-wrapper { 
    max-width: 800px; 
    margin: 80px auto; 
    padding: 50px 30px; 
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 24px; 
    box-shadow: var(--shadow-hover); 
}

#app-kalkulator {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uppercase-text {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.form-row {
    position: relative;
    width: 100%;
}

.input-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 20px 15px 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 16px;
    color: var(--primary-navy);
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    appearance: none; 
}

.form-input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #A0AEC0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    pointer-events: none;
}

textarea.form-input + label {
    top: 25px;
}

.form-input:focus + label,
.form-input:valid + label {
    top: 8px;
    font-size: 10px;
    color: var(--accent-orange);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    background-color: var(--accent-orange);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    padding: 16px 32px;
    font-weight: 800;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #E66000;
}

.price-display {
    background: var(--primary-navy);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.price-display.hidden {
    display: none;
}

.price-label {
    display: block;
    font-size: 12px;
    color: #A0AEC0;
    margin-bottom: 5px;
}

.price-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-orange);
}

/* --- KALKULATOR MULTI-SELECT I KALENDARZ --- */
.services-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 250px; 
    overflow-y: auto;
    padding: 10px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    background: rgba(255,255,255,0.8);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-navy);
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.checkbox-item:hover {
    background: rgba(255, 107, 0, 0.1);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-orange);
    cursor: pointer;
}

.datetime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ==========================================================================
   8. STOPKA
   ========================================================================== */
footer {
    background-color: var(--primary-navy);
    color: var(--text-light);
    padding: 70px 5% 30px 5%;
    font-size: 15px;
    margin-top: 60px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.footer-col h4 { 
    color: white; 
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 10px; 
    letter-spacing: 0.5px;
}

.footer-col p {
    color: #A0AEC0;
    line-height: 1.6;
}

.footer-data { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}

.footer-data li { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: #CBD5E0; 
}

.footer-icon { 
    color: var(--accent-orange); 
    font-size: 16px; 
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 13px;
    color: #718096;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.designer-info { 
    display: block; 
    margin-top: 15px; 
    font-size: 11px; 
    color: #4A5568; 
}

/* ==========================================================================
   9. RESPONSYWNOŚĆ (SMARTFONY I TABLETY)
   ========================================================================== */
@media (max-width: 992px) {
    .nav-desktop { display: none; }
    .hamburger { display: flex; }
    
    .service-hero {
        grid-template-columns: 1fr; 
        text-align: center;
        min-height: auto;
    }
    .service-hero-content {
        align-items: center;
        padding: 80px 20px 40px 20px;
    }
    .service-hero-content h1 {
        font-size: 32px;
    }
    .service-hero-image {
        height: 300px; 
    }
    .service-hero-image::after {
        background: linear-gradient(to bottom, var(--primary-navy) 0%, rgba(10, 25, 47, 0) 100%);
    }
}

@media (max-width: 768px) {
    .header-contact-frame { 
        display: flex; 
        padding: 6px 12px; 
        font-size: 13px; 
        gap: 5px;
    }
    .phone-icon {
        font-size: 14px;
    }
    header { 
        padding: 10px 5%; 
    }
    .logo-link { 
        max-width: 120px; 
    }
    .hero {
        padding: 60px 20px;
        border-radius: 0 0 30px 30px;
    }
    .hero h1 { 
        font-size: 28px; 
    }
    .hero p {
        font-size: 16px;
    }
    .section-title {
        font-size: 26px;
    }
    .grid-8 { 
        gap: 20px; 
    }
    .why-us-section {
        padding: 60px 20px;
    }
    .calculator-wrapper {
        margin: 40px 20px;
        padding: 30px 20px;
    }
    .footer-main { 
        gap: 40px; 
    }
    .fab-call { 
        bottom: 20px; 
        right: 20px; 
        width: 55px; 
        height: 55px; 
        font-size: 24px; 
    }
}

/* ==========================================================================
   NOWOCZESNE FAQ (STYL KAFELKOWY - UPGRADE)
   ========================================================================== */
.faq-section {
    max-width: 1100px; /* Nieco szerzej dla 2 kolumn */
    margin: 80px auto;
    padding: 0 20px;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* 2 kolumny na PC */
    gap: 25px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Efekt "uniesienia" karty po najechaniu myszką */
.faq-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--accent-orange);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-navy);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Pomarańczowy znacznik pytania dla lepszej orientacji */
.faq-item h3::before {
    content: "P:";
    color: var(--accent-orange);
    font-size: 13px;
    background: rgba(255, 107, 0, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    margin-top: 2px;
}

.faq-item p {
    color: #4A5568;
    font-size: 15px;
    line-height: 1.6;
}

/* RWD: Na smartfonach wracamy do jednej kolumny */
@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
    .faq-section {
        margin: 40px auto;
    }
}

/* --- Automatyczna zmiana tekstu statusu --- */
.status-badge.available #status-text::after {
    content: "DZIŚ DOSTĘPNY (POGOTOWIE 24H)";
}

.status-badge.busy #status-text::after {
    content: "W TERENIE (PROSZĘ WYPEŁNIĆ FORMULARZ)";
}