/* --- General & Reset Styles --- */
:root { --primary-color: #FDB813; --primary-color-darker: #E5A60F; --secondary-color: #F8F9FA; --text-color: #495057; --heading-color: #212529; --white-color: #FFFFFF; --dark-bg-color: #212529; --border-color: #dee2e6; --footer-text-light: #e9ecef; --success-color: #28a745; --cta-text-color: #343a40;}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: var(--text-color); background-color: var(--white-color); }
body.mobile-nav-open { overflow: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; overflow: hidden; position: relative; }
.section-title { text-align: center; font-size: 2.5rem; color: var(--heading-color); margin-bottom: 1rem; font-weight: 700; }
.section-subtitle { text-align: center; max-width: 600px; margin: 0 auto 60px auto; color: #5a6268; font-size: 1.1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.page-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0; background-color: transparent; transition: all 0.4s ease; }
.page-header.scrolled { background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(5px); box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08); padding: 15px 0; }
.page-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--white-color); text-decoration: none; transition: color 0.4s ease, text-shadow 0.4s ease; z-index: 1001; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.page-header.scrolled .logo { text-shadow: none; color: var(--heading-color); }
.logo i { margin-right: 8px; color: var(--primary-color); font-size: 1.6rem; vertical-align: middle; transition: transform 0.3s ease; }
.logo:hover i { transform: scale(1.2) rotate(15deg); }
.main-nav a { color: var(--white-color); text-decoration: none; margin-left: 30px; font-weight: 500; transition: color 0.4s ease, text-shadow 0.4s ease; position: relative; padding-bottom: 5px; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.page-header.scrolled .main-nav a { color: var(--heading-color); text-shadow: none; }
.main-nav a:hover { color: var(--primary-color); }
.main-nav a::after { content: ''; position: absolute; width: 0; height: 2px; display: block; bottom: 0; left: 50%; transform: translateX(-50%); background: var(--primary-color); transition: width 0.3s ease-out; }
.main-nav a:hover::after { width: 100%; }
.hamburger-btn { display: none; background: none; border: none; padding: 10px; cursor: pointer; z-index: 1001; }
.hamburger-box { width: 30px; height: 24px; display: inline-block; position: relative; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after { width: 100%; height: 3px; background-color: var(--white-color); position: absolute; border-radius: 3px; transition: transform 0.3s ease, background-color 0.3s ease; }
.page-header.scrolled .hamburger-inner, .page-header.scrolled .hamburger-inner::before, .page-header.scrolled .hamburger-inner::after { background-color: var(--heading-color); }
.hamburger-inner { top: 50%; transform: translateY(-50%); }
.hamburger-inner::before, .hamburger-inner::after { content: ''; }
.hamburger-inner::before { top: -10px; }
.hamburger-inner::after { bottom: -10px; }
.mobile-nav-open .hamburger-inner { transform: rotate(45deg); }
.mobile-nav-open .hamburger-inner::before { top: 0; transform: rotate(0); }
.mobile-nav-open .hamburger-inner::after { bottom: 0; transform: rotate(90deg); }
.mobile-nav-open .logo { color: var(--heading-color); text-shadow: none; }
.mobile-nav-open .hamburger-inner, .mobile-nav-open .hamburger-inner::before, .mobile-nav-open .hamburger-inner::after { background-color: var(--heading-color); }
.hero { color: var(--white-color); height: 100vh; min-height: 650px; display: flex; justify-content: center; align-items: center; text-align: center; padding: 0 20px; }
.hero-slideshow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s linear; }
.slide.active { opacity: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8)); }
.hero-content { max-width: 800px; position: relative; z-index: 3; }
.hero h1 { font-family: 'Exo 2', sans-serif; font-size: 3.8rem; font-weight: 700; margin-bottom: 1rem; text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.7); text-transform: uppercase; }
.hero p { font-size: 1.3rem; font-weight: 300; margin-bottom: 2.5rem; text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.8); }
.cta-button i { margin-right: 10px; }

/* === SEKCJA "O NAS" (Z POPRAWKAMI WYMIARÓW) === */
#about-us { background-color: var(--white-color); border-bottom: 1px solid var(--border-color); }
.about-us-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: center; }
.about-us-image { max-width: 380px; justify-self: center; width: 100%; }
.about-us-image img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.left-aligned { text-align: left; margin-left: 0; margin-right: auto; }
.about-us-content .section-subtitle { margin-bottom: 20px; }
.about-us-content p { margin-bottom: 15px; }

#about { background-color: var(--secondary-color); border-top: 1px solid var(--border-color); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.feature-item { background: var(--white-color); padding: 40px; text-align: center; border-radius: 8px; border-top: 4px solid var(--primary-color); border-left: 1px solid var(--border-color); border-right: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-item:hover { transform: translateY(-10px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.feature-item .icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; transition: transform 0.3s ease; }
.feature-item:hover .icon { transform: scale(1.2) rotate(-10deg); }
.feature-item h3 { font-size: 1.5rem; color: var(--heading-color); margin-bottom: 15px; }
#faq { background-color: var(--dark-bg-color); position: relative; padding: 100px 0; }
#faq .section-title, #faq .section-subtitle { color: var(--white-color); position: relative; z-index: 2; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
#particles-js { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 1; }
#faq .container { position: relative; z-index: 2; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.faq-item:last-child { border-bottom: none; }
.faq-question-heading { margin: 0; font-weight: 600; }
.faq-question { background: none; border: none; width: 100%; text-align: left; padding: 20px 10px; font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: inherit; color: var(--white-color); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background-color 0.3s ease; }
.faq-question:hover { background-color: rgba(255, 255, 255, 0.05); }
.faq-question .fa-chevron-down { transition: transform 0.3s ease; color: var(--primary-color); }
.faq-question.active .fa-chevron-down { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out, padding 0.5s ease-out; background-color: rgba(0,0,0,0.2); color: #f0f0f0; padding: 0 25px; border-radius: 0 0 8px 8px; }
.faq-question.active + .faq-answer { padding: 20px 25px; }
.faq-answer ol { padding-left: 20px; }
.faq-answer li { margin-bottom: 1em; line-height: 1.7; }
.faq-answer strong { color: var(--primary-color); text-shadow: 0 0 4px rgba(0,0,0,0.8); }
#dostepne { background-color: var(--white-color); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; justify-content: center; }
.no-products { grid-column: 1 / -1; text-align: center; color: #6c757d; }
.product-card { background: var(--white-color); border: 1px solid var(--border-color); border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.07); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: 220px; object-fit: cover; }
.product-info { padding: 25px; flex-grow: 1; }
.product-info h3 { font-size: 1.4rem; color: var(--heading-color); margin-bottom: 10px; }
.product-ref { font-weight: 600; color: var(--primary-color); margin-bottom: 15px; font-size: 0.9rem; letter-spacing: 0.5px; }
#contact { background-color: var(--secondary-color); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.contact-info h3 { font-size: 1.8rem; color: var(--heading-color); margin-bottom: 20px; }
address { font-style: normal; }
.contact-details li { list-style: none; display: flex; align-items: flex-start; margin-bottom: 15px; }
.contact-details i { font-size: 1.2rem; color: var(--primary-color); width: 30px; margin-top: 4px; }
.contact-details a { color: var(--text-color); text-decoration: none; transition: color 0.3s ease; }
.contact-details a:hover { color: var(--primary-color); text-decoration: underline; }
.contact-form { position: relative; }
.form-group { margin-bottom: 20px; }
.input-wrapper { display: flex; align-items: center; border: 1px solid var(--border-color); border-radius: 5px; transition: border-color 0.3s, box-shadow 0.3s; background-color: var(--white-color); }
.input-wrapper:focus-within { border-color: var(--primary-color); box-shadow: 0 0 0 4px rgba(253, 184, 19, 0.25); }
.input-wrapper i { padding: 0 15px; color: #adb5bd; transition: color 0.3s ease; }
.input-wrapper:focus-within i { color: var(--primary-color); }
.contact-form input, .contact-form textarea { flex-grow: 1; padding: 12px; border: none; font-family: 'Poppins', sans-serif; font-size: 1rem; background-color: transparent; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.input-wrapper textarea { padding-top: 12px; align-self: flex-start; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #6c757d; opacity: 1; }
.submit-btn { width: 100%; }
.cta-button, .submit-btn { display: inline-block; background-image: linear-gradient(to bottom, var(--primary-color), var(--primary-color-darker)); color: var(--cta-text-color); padding: 16px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; border: none; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.cta-button:hover, .submit-btn:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(253, 184, 19, 0.3); cursor: pointer; }
.form-status { margin-top: 15px; padding: 10px 15px; border-radius: 5px; text-align: center; font-weight: 600; opacity: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease-in-out; }
.form-status.visible { opacity: 1; max-height: 100px; }
.form-status.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-status.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.gdpr-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; color: #6c757d; margin-top: -10px; margin-bottom: 20px; }
.gdpr-consent input[type="checkbox"] { margin-top: 4px; flex-shrink: 0; }
.gdpr-consent a { color: var(--primary-color); text-decoration: underline; }
.map-button-container { text-align: center; margin-bottom: 40px; }
.map-button { font-family: 'Poppins', sans-serif; background-color: var(--primary-color); color: var(--cta-text-color); border: 2px solid var(--primary-color-darker); padding: 12px 30px; border-radius: 50px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; }
.map-button:hover { background-color: var(--primary-color-darker); border-color: var(--primary-color-darker); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.map-button i { margin-right: 8px; }
.map-container { position: relative; padding-bottom: 40%; height: 0; overflow: hidden; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.map-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.page-footer { background-color: var(--dark-bg-color); color: var(--footer-text-light); text-align: center; padding: 40px 0; }
.footer-logo { font-size: 2rem; margin-bottom: 10px; }
.footer-logo .logo { color: var(--white-color); text-shadow: none; }
.footer-details { margin-bottom: 20px; color: #adb5bd; line-height: 1.8; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: var(--footer-text-light); text-decoration: none; margin: 0 10px; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--primary-color); text-decoration: underline; }
.footer-links span { color: #495057; }
.copyright { font-size: 0.9rem; color: #6c757d; margin-top: 20px; }
.animated { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animated.visible { opacity: 1; transform: translateY(0); }
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 95%; max-width: 800px; background-color: rgba(33, 37, 41, 0.85); backdrop-filter: blur(8px); color: var(--footer-text-light); padding: 15px 25px; z-index: 2000; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; border-radius: 10px; box-shadow: 0 5px 25px rgba(0,0,0,0.3); opacity: 0; visibility: hidden; transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; transform: translate(-50%, 10px); }
.cookie-banner.visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.cookie-banner p { margin: 0; font-size: 0.9rem; }
.cookie-banner a { color: var(--primary-color); text-decoration: underline; }
.cookie-btn { background-color: var(--primary-color); color: var(--cta-text-color); border: none; padding: 10px 25px; border-radius: 50px; cursor: pointer; font-weight: 700; flex-shrink: 0; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.cookie-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(253, 184, 19, 0.2); }
.legal-content { padding: 120px 0 80px 0; background-color: var(--secondary-color); }
.legal-content .container { max-width: 800px; background-color: var(--white-color); padding: 40px; border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.1); }
.legal-content h1 { text-align: center; margin-bottom: 40px; color: var(--heading-color); }
.legal-content h2 { margin-top: 40px; margin-bottom: 20px; color: var(--heading-color); }
.legal-content p, .legal-content li { margin-bottom: 15px; line-height: 1.8; color: var(--text-color); }
.legal-content ul { list-style-position: inside; padding-left: 20px; }
.map-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }
.map-overlay.visible { opacity: 1; visibility: visible; }
.map-overlay-content { position: relative; max-width: 90%; max-height: 90%; }
#map-image { display: block; max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.close-map-btn { position: absolute; top: -15px; right: -15px; width: 40px; height: 40px; background-color: var(--white-color); color: var(--dark-bg-color); border: none; border-radius: 50%; font-size: 2rem; line-height: 40px; text-align: center; cursor: pointer; transition: transform 0.3s ease; }
.close-map-btn:hover { transform: rotate(90deg) scale(1.1); }
@media (max-width: 992px) {
    .about-us-wrapper { grid-template-columns: 1fr; text-align: center; }
    .about-us-image { margin-bottom: 30px; max-width: 400px; margin-left: auto; margin-right: auto; }
    .left-aligned { text-align: center; margin: 0 auto; }
    .about-us-content .section-subtitle { margin-bottom: 20px; }
}
@media (max-width: 768px) {
    .main-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: var(--white-color); flex-direction: column; justify-content: center; align-items: center; transform: translateX(100%); transition: transform 0.4s ease-in-out; gap: 30px; display: flex; }
    .mobile-nav-open .main-nav { transform: translateX(0); }
    .main-nav a { color: var(--heading-color); font-size: 1.5rem; margin-left: 0; text-shadow: none; }
    .page-header.scrolled .main-nav a { color: var(--heading-color); }
    .hamburger-btn { display: block; }
    .section-title { font-size: 2rem; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .cta-button, .submit-btn { padding: 14px 28px; font-size: 0.9rem; }
    .contact-wrapper { gap: 40px; margin-bottom: 40px; }
}