.elementor-2232 .elementor-element.elementor-element-7608b096{--display:flex;}.elementor-2232 .elementor-element.elementor-global-2007{margin:5px 5px calc(var(--kit-widget-spacing, 0px) + 5px) 5px;}.elementor-2232 .elementor-element.elementor-element-e48609b{--display:flex;}.elementor-2232 .elementor-element.elementor-element-4b87b7c5{--display:flex;}.elementor-2232 .elementor-element.elementor-element-4b87b7c5.e-con{--e-con-transform-translateY:-51px;}.elementor-2232 .elementor-element.elementor-element-1b2451ea{--display:flex;--gap:20px 20px;--row-gap:20px;--column-gap:20px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2232 .elementor-element.elementor-global-2004{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-2232 .elementor-element.elementor-global-2004.elementor-element{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for global, class: .elementor-global-2007 *//* --- ZMIENNE I PODSTAWY --- */
:root {
    --apple-blue: #0066cc;
    --apple-burgundy: #800020;
    --apple-text: #1d1d1f;
    --apple-border: rgba(0, 0, 0, 0.08);
    --apple-bg: rgba(255, 255, 255, 0.95);
}

.ipoint-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: var(--apple-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--apple-border);
    z-index: 9999;
    height: 80px;
    display: flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img { height: 50px; width: auto; }

/* --- LINKI (DESKTOP) --- */
.nav-links { display: flex; gap: 35px; }
.nav-links a {
    text-decoration: none;
    color: var(--apple-text);
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s ease;
}
.nav-links a:hover { color: var(--apple-blue); }

/* --- PRZYCISK TELEFONU --- */
.phone-btn {
    background: var(--apple-blue);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: var(--apple-burgundy);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.4);
    transform: translateY(-2px);
}

/* --- HAMBURGER --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 10000;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--apple-text);
    transition: 0.3s;
}

/* --- RESPONSYWNOŚĆ (MOBILE) --- */
@media (max-width: 768px) {
    .menu-toggle { display: flex; order: 3; }
    
    .nav-cta { order: 2; margin-left: auto; margin-right: 20px; }
    .phone-btn span { display: none; }
    .phone-btn { padding: 10px; border-radius: 50%; }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 0;
        max-height: 0; /* Ukryte przez wysokość */
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        gap: 0;
    }

    /* Klasa aktywna dla menu */
    .nav-links.active {
        max-height: 300px; /* Rozwinięcie menu */
        padding: 10px 0;
    }

    .nav-links a {
        padding: 20px;
        width: 100%;
        border-bottom: 1px solid var(--apple-border);
        font-size: 16px;
    }

    /* Animacja Hamburgera w X */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dc75071 *//* --- ZMIENNE GLOBALNE --- */
:root {
    --apple-blue: #0066cc;
    --apple-bg: #f5f5f7;
    --apple-text: #1d1d1f;
    --apple-sub: #86868b;
    --apple-border: #d2d2d7;
    --apple-red: #ff3b30;
}

body {
    margin: 0;
    padding: 0;
}

.ipoint-contact-wrapper {
    padding: 80px 0;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gwiazdka przy polach obowiązkowych */
.star {
    color: var(--apple-red);
    font-weight: bold;
    margin-left: 2px;
}

.contact-header { text-align: center; margin-bottom: 60px; }
.contact-badge {
    color: var(--apple-blue);
    padding: 6px 16px;
    border: 1.5px solid var(--apple-blue);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}
.contact-header h2 { font-size: 42px; font-weight: 700; color: var(--apple-text); margin-bottom: 10px; }
.contact-header p { color: var(--apple-sub); font-size: 19px; }

.contact-content-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }

/* LEWA KOLUMNA */
.info-card {
    background: var(--apple-bg);
    padding: 30px;
    border-radius: 24px;
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    transition: 0.3s;
}
.info-card .icon-box {
    background: #fff; width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--apple-blue); font-size: 20px; flex-shrink: 0;
}
.text-box h3 { font-size: 19px; font-weight: 600; margin: 0 0 8px; }
.text-box p { margin: 0; color: #424245; font-size: 16px; line-height: 1.5; }
.contact-big-link { color: var(--apple-blue); text-decoration: none; font-weight: 700; font-size: 20px; }
.hours-list { list-style: none; padding: 0; margin-top: 15px; }
.hours-list li { display: flex; justify-content: space-between; font-size: 15px; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.nip-badge { font-weight: 600; font-size: 14px; color: var(--apple-sub); }

/* PRAWA KOLUMNA - FORMULARZ */
.contact-form-col {
    background: #fff; border: 1px solid var(--apple-border);
    border-radius: 28px; padding: 45px; box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}
.ipoint-form h3 { font-size: 22px; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--apple-sub); text-transform: uppercase; margin-bottom: 8px; }

.form-group input, .form-group textarea {
    width: 100%; padding: 16px; border-radius: 12px; border: 1px solid var(--apple-border);
    background: var(--apple-bg); font-size: 16px; outline: none; transition: 0.3s; box-sizing: border-box;
}

/* Walidacja telefonu i pustych pól */
.form-group input:focus, .form-group textarea:focus { 
    border-color: var(--apple-blue); 
    background: #fff; 
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: var(--apple-red);
    background: #fff6f6;
}

/* STYLE DLA CHECKBOZÓW */
.form-consent-section { margin: 25px 0 30px; }
.checkbox-wrapper { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; cursor: pointer; }
.checkbox-wrapper input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 2px;
    accent-color: var(--apple-blue); cursor: pointer;
}
.checkbox-text { font-size: 13px; line-height: 1.5; color: var(--apple-sub); }
.checkbox-text a { color: var(--apple-blue); text-decoration: none; font-weight: 600; }

.submit-btn {
    width: 100%; background: var(--apple-blue); color: #fff; border: none;
    padding: 18px; border-radius: 14px; font-size: 16px; font-weight: 600;
    cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px; transition: 0.3s;
}
.submit-btn:hover { background: #0056b3; transform: scale(1.02); }

@media (max-width: 900px) {
    .contact-content-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}/* End custom CSS */
/* Start custom CSS for global, class: .elementor-global-2004 *//* --- GŁÓWNA STRUKTURA STOPKI --- */
.ipoint-footer {
    background-color: #111112; /* Kolor stopki */
    color: #f5f5f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-top: 1px solid #2d2d2f;
    padding-top: 45px;
    width: 100%;
    position: relative;

    /* KLUCZOWA ZMIANA: 
       Cień rozciąga się na 1000px TYLKO W DÓŁ (trzecia wartość: 0).
       Zapewnia to czarne tło pod stopką, jeśli strona jest krótka.
    */
    box-shadow: 0 1000px 0 1000px #111112;

    /* Rozciągnięcie tła na całą szerokość ekranu */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

/* Zapobieganie powstawaniu paska przewijania przez ogromny cień */
body {
    overflow-x: hidden;
}

/* Kontener centrujący treść wewnątrz stopki */
.footer-center-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid #2d2d2f;
}

/* --- KOLUMNY I TREŚĆ --- */
.footer-col {
    flex: 0 1 auto;
    min-width: 160px;
}

.brand-col { max-width: 250px; }
.footer-logo { font-size: 18px; color: #fff; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.brand-description { font-size: 13px; color: #86868b; line-height: 1.5; margin-bottom: 15px; }

/* Dane firmy */
.company-details {
    font-size: 12px;
    color: #6e6e73;
    line-height: 1.4;
    border-top: 1px solid #2d2d2f;
    padding-top: 12px;
    margin-top: 15px;
}
.company-details p { margin: 0 0 3px 0; }
.company-details strong { color: #f5f5f7; }

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #86868b;
    margin-bottom: 15px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col a, .contact-link {
    text-decoration: none;
    color: #a1a1a6;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-col a:hover { color: #2997ff; }

.contact-link { display: block; margin-bottom: 6px; }
.contact-link i { color: #2997ff; margin-right: 8px; width: 12px; }

/* Regulaminy */
.legal-links-inline {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #2d2d2f;
    font-size: 11px;
    display: flex;
    gap: 8px;
}
.separator { color: #2d2d2f; }

/* Mapa */
.map-col { width: 220px; }
.footer-map-widget {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2d2d2f;
}
.footer-map-widget iframe { filter: grayscale(1) invert(0.9); border: none; }

/* Dolny pasek */
.footer-bottom {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 11px;
    color: #555555;
}

.social-links { display: flex; gap: 15px; }
.social-links a { font-size: 16px; color: #86868b; transition: 0.3s; }
.social-links a:hover { color: #fff; }

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
    .footer-container { flex-direction: column; align-items: center; text-align: center; }
    .footer-col { width: 100%; }
    .legal-links-inline { justify-content: center; border-top: none; }
    .footer-bottom { flex-direction: column; gap: 10px; padding: 20px 0; }
}/* End custom CSS */