/* --- Slider styles --- */
.slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	/* pełna szerokość widoku */
	max-height: 800px;
}

.slides {
	display: flex;
	transition: transform 0.5s ease-in-out;
	width: 300%;
	/* 3 slajdy */
}

.slide {
	width: 100%;
	/* pełna szerokość ekranu */
	position: relative;
	color: white;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	/* tekst po lewej */
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 100%;
	height: 800px;
	padding-left: 60px;
	/* trochę miejsca na tekst */
	box-sizing: border-box;
}

.slide-content {
	padding: 30px;
	border-radius: 8px;
	z-index: 10;
	/* wymuszamy, żeby tekst nie wychodził poza slider */
	overflow-wrap: break-word;
	color: #000;
}

.slide-content-type1 {
	margin-left: 50%;
	margin-top: -28%;
	max-width: 650px;
	margin-right: 10%;
}

.slide-content-type2 {
	margin-left: 40%;
	margin-top: 0%;
	max-width: 650px;
	margin-right: 10%;
}

.slide-content-type3 {
	margin-left: 42%;
	margin-top: -28%;
	max-width: 550px;
	margin-right: 10%;
}

.slide-content h2 {
	font-size: 48px;
	padding-bottom: 15px;
	padding-left: 15px;
	border-left: 4px solid orange;
}

.slide-content p {
	font-size: 36px;
	margin-bottom: 20px;
	padding-left: 15px;
	border-left: 4px solid orange;
}

.slide-content button {
	background-color: rgba(255, 105, 0, 1);
	border: none;
	padding: 12px 25px;
	font-size: 1rem;
	width: 140px;
	font-weight: 700;
	color: white;
	cursor: pointer;
	letter-spacing: 1px;
	border-radius: 5px;
	transition: background-color 0.3s;
	margin: auto;
	display: block;
}

.slide-content button:hover {
	background-color: rgba(255, 140, 50, 1);
}

/* Strzałki - bez zmian */
.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 3rem;
	color: white;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	cursor: pointer;
	user-select: none;
	z-index: 20;
	transition: background 0.3s;
}

.arrow:hover {
	background: rgba(0, 0, 0, 0.6);
}

.arrow.left {
	left: 20px;
	padding-right: 6px;
}

.arrow.right {
	right: 20px;
	padding-left: 6px;
}

/* Responsive slider */
@media (max-width: 900px) {
	.slide-content {
		max-width: 90%;
		padding: 20px;
	}

	.slide-content h2 {
		font-size: 1.8rem;
	}

	.slide-content p {
		font-size: 1rem;
	}

	.slide {
		height: 350px;
	}

	.arrow {
		font-size: 2rem;
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
}











.opis1 {
	padding: 120px 30px;
	background-color: #f9f9f9;
	font-family: 'Roboto', sans-serif;
	background-image: url('../img/back.webp');
}

.opis1 .container {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.left-column,
.right-column {
	flex: 1;
	min-width: 300px;
}

.subtitle {
	color: #888;
	margin-bottom: 15px;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 15px;
}

.title {
	font-size: 24px;
	font-weight: 700;
	color: #000;
	margin-bottom: 25px;

	line-height: 54px;
	font-weight: 700;
	color: #000000;
	font-size: 36px;
}

.orange-bar {
	width: 50px;
	height: 4px;
	background-color: #ff6900;
	margin-bottom: 20px;
}

.description {
	font-size: 18px;
	color: #333;
	margin-bottom: 30px;
	margin-top: 12px;
	line-height: 28px;
	font-family: Roboto;
	font-weight: 400;
	letter-spacing: 0em;
	color: #888;
}

.btn-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #000;
	padding: 12px 20px;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 4px;
	transition: all 0.3s;
}

.btn-more img {
	width: 38px;
}

.btn-more:hover {
	color: #e65a00;
	transform: scale(1.1);
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
	.opis1 .container {
		flex-direction: column;
	}

	.title {
		font-size: 32px;
	}

	.subtitle {
		font-size: 16px;
	}

	.description {
		font-size: 15px;
	}

	.btn-more {
		font-size: 14px;
		padding: 10px 16px;
	}
}














.kafelki1 {
	padding: 60px 20px;
	background-color: #fdfdfd;

	font-family: Roboto;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.66;
	
}


.kafelki-container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	align-items: stretch;


	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.kafelki-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.kafelek {
	background: #fff;
	flex: 1 1 300px;
	max-width: 320px;
	text-align: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.4s ease;
}

.kafelek:hover {
	transform: scale(1.1);
}

.kafelek-logo {
	width: 90%;
	height: auto;
	margin: 0 auto 20px;
}

.kafelek-title {
	font-size: 24px;
	color: #000;
	margin-bottom: 15px;
}

.kafelek-desc {
	font-size: 15px;
	color: #888;
	margin-bottom: 25px;
	flex-grow: 1;
}

.zobacz-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 20px;
	border-top: 1px solid #eee;
	color: #000;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: background 0.4s ease;
	margin-top: auto;
}

.zobacz-button::before {
	content: '';
	position: absolute;
	left: -100%;
	top: 0;
	width: 100%;
	height: 100%;
	background: #ff6900;
	transition: left 0.4s ease;
	z-index: 0;
}

.zobacz-button:hover::before {
	left: 0;
}

.zobacz-button span,
.zobacz-button i {
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}

.zobacz-button:hover span,
.zobacz-button:hover i {
	color: #fff;
}

@media (max-width: 768px) {
	.kafelki-container {
		flex-direction: column;
		align-items: center;
	}
}





















.lokalizacja1 {
	font-family: Roboto;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.66;
	background: #fff;
}

.lokalizacja-container {
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

.lokalizacja-image {
	flex: 1 1 50%;
	min-width: 300px;
	background: url('../img/lokalizacja.webp') no-repeat center center;
	background-size: cover;
	min-height: 450px;
}

.lokalizacja-stats {
	flex: 1 1 50%;
	min-width: 300px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	background-color: #222;
	padding: 20px;
}

.lokalizacja-box {
	flex: 0 1 30%;
	text-align: center;
	padding: 10px;
}

.lokalizacja-box i {
	height: 20px;
	font-size: 46px;
	color: #888;
}

.lokalizacja-number {
	height: 100px;
	color: #ff8200;
	font-weight: 800;
	font-size: 60px;
}

.lokalizacja-title {
	height: 50px;
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 10px;
	color: #fff;
}

.lokalizacja-text {
	min-height: 100px;
	font-size: 14px;
	color: #b1b1b1;
}

@media (max-width: 1000px) {
	.lokalizacja-container {
		flex-direction: column;
	}

	.lokalizacja-image {
		height: 250px;
	}
}















/* Sekcja certyfikatów */
#certyfikaty1 {
	text-align: center;
	padding: 40px;
	background-color: #f9f9f9;
	padding-bottom: 100px;
}

#certyfikaty1 h2 {
	margin-bottom: 40px;

	font-family: Roboto;
	font-weight: 800;
	letter-spacing: 0em;
	line-height: 1.66;
	font-size: 31px;
}

.certyfikaty-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.cert-box {
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	max-width: 300px;
	cursor: pointer;
	overflow: hidden;
	transition: transform 0.4s ease;
}
.cert-box:hover {
	transform: scale(1.1);
}

.cert-img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

/* Modal – pełnoekranowe powiększenie */
.modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	cursor: zoom-out;
}

.modal-content {
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px;
	box-shadow: 0 0 20px black;
	cursor: pointer;
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 2rem;
	color: white;
	cursor: pointer;
}











#wyroznienia {
	font-family: Roboto;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.66;

  padding-top: 60px;
  background-color: #fff;
  position: relative;
  text-align: center;
  border-top: 2px solid #e0e0e0;
}

/* Pozioma linia z kółkiem */
.divider {
  width: 100%;
  position: relative;
  margin-bottom: 60px;
}

.circle-logo {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  color: #111;
  text-align: center;
}

.circle-logo img {
	width: 60px;
}

.wyroznienia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  opacity: 0;
  transform: translateY(40px);
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  transition: opacity 0.6s ease-out, transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0); /* początkowy brak cienia */
}

.feature.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature i {
  margin-bottom: 20px;
  color: var(--c-prostkey-orange);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature:hover i {
  transform: scale(1.3);
}

.feature h3 {
	height: 30px;
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #111;
  text-transform: uppercase;
}

.feature p {
	min-height: 100px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

/* Ukrycie nagłówka dla dostępności */
.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;
}

@media (max-width: 1100px) {
  .wyroznienia-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wyroznienia-grid {
    grid-template-columns: 1fr;
  }
}








.googlemaps {
	width: 100%;
	height: 450px;
}



#googlemaps {
  width: 100%;
  margin-top: 40px;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

.locations-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.location-btn {
  background-color: #eee;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.location-btn:hover {
  background-color: #ddd;
}

.location-btn.active {
  background-color: var(--c-prostkey-orange);
  color: #fff;
  border-color: #eee;
}

.location-btn i {
	padding-right: 15px;
}

.map-wrapper {
  position: relative;
  height: 450px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.map-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  border-radius: 12px;
  border: none;

  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.map-frame.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}







#zadzwon {
	background-color: #fff;
	padding: 60px 20px;
	text-align: center;
	font-family: Roboto;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.66;
}

.zadzwon-container {
  max-width: 800px;
  margin: 0 auto;
}

#zadzwon h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

#zadzwon p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}







.kontakt-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* wyśrodkowanie kafelków */
  background-color: #ff8200;
  width: 100%;
  gap: 20px; /* odstęp między kafelkami */
  min-height: 110px;
}

.kontakt-kafelek {
  width: 40%;
  padding: 20px 20px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: auto 80%;
  border-radius: 10px;
  
  font-size: 24px;
	font-weight: 700;
	color: #222;
	font-family: Roboto;
	letter-spacing: 0em;
	line-height: 1.66;
}

/* Ikony */
.kontakt-kafelek.email {
  background-image: url('../img/message.webp');
}

.kontakt-kafelek.telefon {
  background-image: url('../img/call.webp');
}

/* Responsive: jedna kolumna pod drugą */
@media (max-width: 768px) {
  .kontakt-kafelek {
    width: 90%;
  }
}