.elementor-644 .elementor-element.elementor-element-fae9aef{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-ba915d5 *//* STOPKA */
.footer-wrapper {
    background: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.footer-wrapper * {
    box-sizing: border-box;
}

.footer-wrapper .container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Główna sekcja stopki */
.footer-main {
    padding: 40px 0 25px;
    background: #0a0a0a;
    border-top: 3px solid #ffcc00;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Logo i opis */
.footer-logo {
    margin-bottom: 15px;
}

.logo-image {
    max-width: 160px;
    height: auto;
    margin-bottom: 10px;
    display: block;
}

.logo-tagline {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 15px;
    font-style: italic;
}

.footer-description {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Tytuły sekcji */
.footer-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffcc00;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #333;
}

/* Kontakt */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #ffcc00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
}

.contact-text {
    flex: 1;
    line-height: 1.5;
}

.contact-text strong {
    color: #ffcc00;
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.contact-text a:hover {
    color: #ffcc00;
}

/* Menu */
.footer-nav {
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 0;
    display: block;
    border-left: 3px solid transparent;
    padding-left: 15px;
    font-size: 0.9rem;
    position: relative;
}

.footer-menu a:before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ffcc00;
}

.footer-menu a:hover {
    color: #ffcc00;
    border-left-color: #ffcc00;
    padding-left: 20px;
}

.footer-menu a:hover:before {
    opacity: 1;
}

/* Dolna sekcja */
.footer-bottom {
    padding: 18px 0;
    background: #111;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffcc00;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc00;
}

.footer-links a:hover:after {
    width: 100%;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer-wrapper .container {
        max-width: 95%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo-image {
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 25px 0 15px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
    }
    
    .footer-menu a {
        text-align: center;
        border-left: none;
        padding-left: 0;
    }
    
    .footer-menu a:before {
        display: none;
    }
    
    .footer-menu a:hover {
        padding-left: 0;
    }
    
    .logo-image {
        max-width: 110px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
}/* End custom CSS */