
/* certyfikaty dol strony */

.certyfikaty {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
	margin-bottom: 0;
	padding-bottom: 0;
}

.certyfikaty img {
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	display: block;
}

@media ( min-width : 600px) {
	.certyfikaty img {
		width: auto;
		max-width: 250px;
	}
}

/* certyfikaty dol strony */

/* banner zgody na cookies */

#cookieConsentBanner {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 640px; /* ZWIĘKSZONA SZEROKOŚĆ */
  width: 90%;
  background: #2b2b2b;
  color: #f1f1f1;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  padding: 24px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  z-index: 1000;
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

#cookieConsentBanner .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#cookieConsentBanner p {
  margin: 0;
  line-height: 1.6;
}

#cookieConsentBanner .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 13px;
}

#cookieConsentBanner .categories label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ddd;
}

#cookieConsentBanner .categories input[type="checkbox"] {
  accent-color: #4caf50;
}

#cookieConsentBanner .actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#cookieConsentBanner .actions button {
  flex: 1 1 auto;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.2s ease, transform 0.1s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

#cookieConsentBanner .actions button:hover {
  transform: scale(1.03);
}

#cookieConsentBanner .btn-reject {
  background-color: #e74c3c;
  color: #fff;
}

#cookieConsentBanner .btn-accept-selected {
  background-color: #27ae60;
  color: #fff;
}

#cookieConsentBanner .btn-proceed {
  background-color: #2980b9;
  color: #fff;
  width: 100%;
  font-weight: bold;
}

#cookieConsentBanner .actions-row {
  display: flex;
  gap: 10px;
}

#cookieConsentBanner .btn-reject,
#cookieConsentBanner .btn-accept-selected {
  flex: 1 1 50%;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  #cookieConsentBanner {
    bottom: 20px;
    padding: 18px;
  }

  #cookieConsentBanner .actions {
    flex-direction: column;
  }

  #cookieConsentBanner .actions button {
    width: 100%;
  }
}

/* banner zgody na cookies */

.custom-section {
	background-color: #f9f9f9;
	padding: 40px 20px;
}

.custom-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.custom-title {
	font-size: clamp(1.8rem, 4vw, 2.4rem);
	text-align: center;
	margin-bottom: 60px;
	font-weight: 700;
}

.custom-panel {
	margin-bottom: 30px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
}

.custom-panel h3 {
	font-size: 1.3rem;
	margin-bottom: 8px;
	font-weight: bold;
	color: #333;
	margin-top: 30px;
}

.custom-toggle {
	cursor: pointer;
	position: relative;
	font-weight: 600;
	padding-right: 25px;
	font-size: 1.05rem;
	color: #006699;
}

.custom-toggle::after {
	content: "▼";
	position: absolute;
	right: 0;
	top: 0;
	transition: transform 0.3s ease;
}

.custom-toggle.active::after {
	transform: rotate(-180deg);
}

.custom-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.3s ease;
	padding: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #444;
}

.custom-content.expanded {
	padding: 10px 0;
	max-height: 10000px;
}

.certyfikat-tuv-ce {
	text-align: center;
	margin: 20px auto;
	max-width: 800px;
	font-size: 1.1em;
	line-height: 1.6;
}

@media ( max-width : 768px) {
	.section-halfscreen-image {
		background-image: url(/files/1744121494538_2.jpg) !important;
		background-size: cover;
		background-position: center;
		background-color: transparent !important;
	}
	.section-halfscreen-inner, .container, .row, .col-md-6, .col-lg-5,
		.section-halfscreen-content {
		background-color: transparent !important;
	}
	.section-halfscreen-content p {
		color: white !important;
		text-shadow: 2px 2px 6px rgba(0, 0, 0, 1);
		background-color: rgba(0, 0, 0, 0.4);
		padding: 10px;
		border-radius: 8px;
	}
}



.margin-top {
	margin-top: 30px;
}

/* OFERTA */

.modular-table {
	padding: 2rem;
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
}

.modular-table .table-wrapper {
	width: 100%;
	max-width: 960px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.modular-table .comparison-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border-radius: 12px;
	overflow: hidden;
}

.modular-table .comparison-table thead th {
	background-color: #e0e0e0;
	text-align: center;
	font-size: 1.25rem;
	font-weight: bold;
	padding: 1.2rem;
	border-bottom: 1px solid #ccc;
}

.modular-table .comparison-table td {
	padding: 1.4rem;
	border-bottom: 1px solid #eee;
	vertical-align: top;
	line-height: 1.7;
}

.modular-table .comparison-table td ul, .modular-table .comparison-table td ol
	{
	padding-left: 1.5rem;
	margin: 1rem 0;
}

.modular-table .comparison-table td p {
	font-weight: bold;
	font-size: 1.15rem;
	margin-top: 1.5rem;
	margin-bottom: 0.6rem;
	color: #333;
}

@media screen and (max-width: 767px) {
	.modular-table .comparison-table {
		min-width: 100%;
	}
	.modular-table {
		padding: 1rem;
	}
}

.jzm-info-note {
	text-align: center;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #555;
	margin: 2rem auto 0;
	max-width: 1200px;
	padding: 1rem;
	background-color: #f0f0f0;
	border-radius: 8px;
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.05);
}

.jzm-specyfikacja-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	padding: 2rem;
	border-radius: 12px;
	max-width: 1200px;
	margin: 0 auto;
}

.jzm-col {
	flex: 1 1 48%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.jzm-blok {
	background: #fff;
	border-radius: 10px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.jzm-blok h2 {
	margin-top: 0;
	font-size: 1.4rem;
	color: #2c3e50;
	border-bottom: 2px solid #e0e0e0;
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
}

.jzm-blok ul {
	list-style: disc;
	padding-left: 1.2rem;
	margin: 0;
}

.jzm-blok ul li {
	margin-bottom: 0.5rem;
	font-size: 1rem;
	line-height: 1.5;
}

.jzm-imgbox {
	margin-top: 1.5rem;
	text-align: center;
}

.jzm-imgbox img {
	max-width: 90%;
	width: 40%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
	display: block;
	margin: 0 auto;
}

@media ( max-width : 768px) {
	.jzm-col {
		flex: 1 1 100%;
	}
	.jzm-specyfikacja-grid {
		padding: 1rem 1rem;
	}
	.jzm-blok h2 {
		font-size: 1.2rem;
	}
	.jzm-blok ul li {
		font-size: 0.95rem;
	}
}

/* OFERTA */

/* MAPA STRONY */

.sitemap-section {
  max-width: 900px;
  margin: 3em auto;
  padding: 2em;
  background: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", sans-serif;
}

.sitemap-section h2 {
  font-size: 2em;
  margin-bottom: 1em;
  text-align: center;
  color: #2c3e50;
}

.sitemap-section section {
  padding: 1.2em 0;
  border-bottom: 1px solid #ddd;
}

.sitemap-section section:last-child {
  border-bottom: none;
}

.sitemap-section h3 {
  margin: 0 0 0.3em;
  font-size: 1.1em;
}

.sitemap-section h4 {
  margin: 0.6em 0 0.3em;
  font-size: 1em;
  padding-left: 1em;
}

.sitemap-section h5 {
  margin: 0.4em 0 0.3em;
  font-size: 0.95em;
  padding-left: 2em;
}

.sitemap-section a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
}

.sitemap-section a:hover {
  text-decoration: underline;
  color: #004a99;
}

.sitemap-section p {
  margin: 0.2em 0 0.8em;
  color: #555;
  font-size: 0.95em;
  padding-left: 0.2em;
}

.sitemap-subsection {
  padding-left: 1.5em;
  border-left: 2px solid #ddd;
  margin-top: 0.5em;
}

.sitemap-sub-subsection {
  padding-left: 2em;
  border-left: 2px dashed #ccc;
  margin-top: 0.3em;
}

/* MAPA STRONY */

/* OFERTA PROCES PRODUKCJI */

 .etapy-procesu {
  padding: 3rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.etapy-procesu__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.etapy-procesu__intro {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

.etapy-procesu__lista {
  counter-reset: numerowana-lista;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.etapy-procesu__lista li {
  counter-increment: numerowana-lista;
  position: relative;
  padding: 1rem 1.2rem 1rem 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #444;
  background: #fdfdfd;
  border-left: 4px solid #007bff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.etapy-procesu__lista li::before {
  content: counter(numerowana-lista) ".";
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-weight: bold;
  color: #007bff;
  font-size: 1.1rem;
}

.etapy-procesu__lista a {
  color: #007bff;
  text-decoration: none;
}

.etapy-procesu__lista a:hover {
  text-decoration: underline;
}

.etapy-procesu__images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.etapy-procesu__figure {
  width: 48%;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.etapy-procesu__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.etapy-procesu__caption {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  text-align: center;
  color: #444;
  background-color: #f8f8f8;
  padding: 0.6rem;
  border-radius: 6px;
  box-sizing: border-box;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .etapy-procesu__figure {
    width: 100%;
  }
}

/* OFERTA PROCES PRODUKCJI */

/* KONTAKT */

        .cta-section {
  background: #1b1f3b;
}

.map-wrapper {
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid #ddd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.content-block p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.content-block h2 {
  font-weight: 700;
  font-size: 1.8rem;
}

.social-icons .mdi {
  font-size: 28px;
  color: #333;
  transition: color 0.3s ease;
}

.social-icons .mdi:hover {
  color: #007bff;
}
.scroll-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-in.scroll-in-delay {
  transition-delay: 0.2s;
}

.scroll-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* KONTAKT */

/* KATALOG */

.wrap-text {
  white-space: normal !important;
  word-break: break-word;
  text-align: center;
}
.equal-image {
  height: 132px;
}

/* KONTAKT */

/* FAQ */

.faq-wrapper {
  font-family: Arial, sans-serif;
  max-width: 80%;
  margin: 0 auto;
  padding: 1em;
  line-height: 1.6;
}

.faq-list p {
  margin: 0.5em 0;
  font-size: 1.3em;
}

.faq-list a {
  text-decoration: none;
  color: #1e88e5;
  transition: color 0.3s ease;
  cursor: pointer;
}

.faq-list a:hover {
  color: #1565c0;
}

.faq-item {
  margin-top: 3em;
  padding: 1em;
  border-left: 4px solid #1e88e5;
  background-color: #f9f9f9;
  scroll-margin-top: 60px;
}

.faq-item h3 {
  margin-top: 0;
  color: #333;
}

.faq-list {
  border: 2px solid #1e88e5;
  border-radius: 8px;
  padding: 1em;
  margin-bottom: 3em;
  background-color: #f0f8ff;
}

.faq-list p {
  margin: 0.5em 0;
  font-size: 1.3em;
}

.faq-list hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0.5em 0 1em 0;
}

.faq-list a {
  text-decoration: none;
  color: #1e88e5;
  transition: color 0.3s ease;
  cursor: pointer;
}

.faq-list a:hover {
  color: #1565c0;
}

.faq-item.animated {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.faq-item.animated.visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-list.animated {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.faq-list.animated.visible {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 600px) {
  .faq-list p,
  .faq-item p,
  .faq-item h3 {
    font-size: 1.1em;
  }

  .custom-title {
    font-size: 1.3em;
    text-align: center;
  }

  .faq-wrapper {
    padding: 0.5em;
  }
}
@media (max-width: 768px) {
  .faq-wrapper {
    max-width: 95%;
    padding: 0.2em;
  }
}

/* FAQ */

/* Leasing,O Nas */

.sekcja-bloku {
  width: 80%;
  margin: 20px auto;
  padding: 16px;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  overflow: hidden;
  background-color: #fff;
}

/* Styl tekstu */
.sekcja-bloku h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #333;
}

.sekcja-bloku p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 600px) {
  .sekcja-bloku {
    width: 100%;
    margin: 20px 12px;
    padding: 16px;
  }

  .sekcja-bloku h3 {
    font-size: 1.25rem;
  }

  .sekcja-bloku p {
    font-size: 0.95rem;
  }
}

.animacja-pojawiania {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease-out;
}

.wejscie-bloku {
  opacity: 1;
  transform: scale(1);
}
 
.blok-obrazow {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  flex-wrap: wrap;
  max-width: 900px;
  padding: 0 12px;
  box-sizing: border-box;
}

.obrazek-blok {
  flex: 1 1 45%;
  text-align: center;
}

.obrazek-blok img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  max-width: 100%;
}

.obrazek-blok p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #444;
}

@media (max-width: 600px) {
  .obrazek-blok {
    flex: 1 1 100%;
  }

  .obrazek-blok img {
    height: 200px;
    max-width: 100%;
  }
}

/* Leasing,O Nas */

/* Realizacje - FB */

  .fb-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #4267B2;
  color: white;
  border: none;
  padding: 14px 16px 10px 16px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: sans-serif;
}

.fb-button:hover {
  background-color: #365899;
  transform: translateY(-2px);
}

.fb-icon {
  background-color: white;
  color: #4267B2;
  border-radius: 50%;
  font-size: 14px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
                  
  .fb-button-bg {
  position: relative;
  padding-left: 48px;
}

.fb-button-bg::before {
  content: "";
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%234267B2' d='M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4 .4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z'/></svg>") no-repeat center;
  background-size: 18px 18px;
  background-color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
  
/* Realizacje - FB */
  
/* Realizacje - YT */
  
  .youtube-button-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.youtube-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FF0000;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 20px 12px 50px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 250px;
  overflow: hidden;
}

.youtube-button::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='white' d='M549.7 124.1c-6.3-23.8-24.9-42.5-48.6-48.9C458.5 64 288 64 288 64s-170.5 0-213.1 11.2c-23.8 6.3-42.3 25.1-48.6 48.9C16 167.7 16 256 16 256s0 88.3 10.3 131.9c6.3 23.8 24.9 42.5 48.6 48.9C117.5 448 288 448 288 448s170.5 0 213.1-11.2c23.8-6.3 42.3-25.1 48.6-48.9 10.3-43.6 10.3-131.9 10.3-131.9s0-88.3-10.3-131.9zM232 334.7V177.3L345 256l-113 78.7z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.youtube-button:hover {
  background-color: #cc0000;
  color: #fff;
}
    
  #youtube-jeden {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  flex-direction: column;
}

#youtube-jeden iframe {
  max-width: 100%;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border: none;
}

/* Mobile fix */
@media (max-width: 576px) {
  #youtube-jeden {
    padding: 10px;
  }
}
 
/* Realizacje - YT */
  