/* =========================================================
   0) CSS VARIABLES / THEME
   ========================================================= */
:root {
	--primary: #0ea5e9;
	--dark: #0b1320;
	--secondary: #64748b;
	--bg: #f8fafc;
	--white: #ffffff;
	--transition: all 0.3s ease;
}

/* =========================================================
   1) RESET & BASE
   ========================================================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
}

body {
	font-family: "Inter", sans-serif;
	color: var(--dark);
	background: var(--bg);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}

/* =========================================================
   2) NAVBAR & OFFCANVAS
   ========================================================= */
.navbar {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	z-index: 1050; /* nad treścią */
	padding-top: 0.6rem;
	padding-bottom: 0.6rem;
	transform-origin: top;
}
.navbar-shrink {
	padding-top: 0.1rem;
	padding-bottom: 0.1rem;
	backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
	position: relative;
	z-index: 11;
	max-width: 200px;
	max-height: 70px;
}
.nav-link {
	color: var(--dark);
	font-weight: 500;
	padding: 0.5rem 1rem;
	transition: var(--transition);
	position: relative;
}
.nav-link:hover,
.nav-link.active {
	color: var(--primary);
}
.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: var(--transition);
	transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
	width: 60%;
}

/* warstwy offcanvas ponad wszystkim (poza modalami) */
.offcanvas {
	z-index: 1100;
}
.offcanvas-backdrop {
	z-index: 1095;
}

/* pełna wysokość i prawidłowe dokowanie panelu */
.offcanvas.offcanvas-end {
	top: 0px;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	max-height: 94vh;
	background-color: #fff;
}

/* przewijane body + ergonomia listy */
.offcanvas .offcanvas-body {
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	justify-content: center; /* wyśrodkowanie pionowe */
	align-items: center; /* wyśrodkowanie poziome */
	text-align: center;
	padding: 1rem 0;
	height: 100%;
}
.offcanvas .nav-link {
	width: 100%;
	font-size: 1.1rem;
	padding: 0.75rem 0;
}
.offcanvas .btn.btn-primary {
	width: 80%;
	margin-top: 1.5rem;
	align-self: center;
	border-radius: 12px;
}
/* Toggler UX */
.navbar-toggler {
	border-color: rgba(0, 0, 0, 0.12);
}
.navbar-toggler:focus {
	box-shadow: none;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: linear-gradient(
			135deg,
			rgba(14, 165, 233, 0.4),
			rgba(11, 19, 32, 0.3)
		),
		url("../../assets/img/background_6.webp") center/cover no-repeat;
}

.z-2 {
	z-index: 2;
	position: relative;
}

.backdrop-blur {
	backdrop-filter: blur(10px);
}

/* Water Drops Effect */
.water-drops {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.drop {
	position: absolute;
	background: radial-gradient(
		circle at 30% 30%,
		rgba(255, 255, 255, 0.9),
		rgba(14, 165, 233, 0.6) 40%,
		rgba(14, 165, 233, 0.3)
	);
	border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
	box-shadow: inset -2px -3px 8px rgba(255, 255, 255, 0.6),
		inset 2px 3px 8px rgba(14, 165, 233, 0.4),
		0 8px 16px rgba(14, 165, 233, 0.3), 0 0 20px rgba(14, 165, 233, 0.2);
	animation: fall linear infinite;
	opacity: 0;
}

/* Dodatkowy efekt połysku */
.drop::before {
	content: "";
	position: absolute;
	top: 15%;
	left: 20%;
	width: 30%;
	height: 30%;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	filter: blur(2px);
}

/* Mała kropelka po uderzeniu */
.splash {
	position: absolute;
	bottom: -50px;
	width: 100%;
	height: 20px;
	opacity: 0;
	animation: splash 0.6s ease-out;
}

.splash::before,
.splash::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 8px;
	height: 8px;
	background: rgba(14, 165, 233, 0.6);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(14, 165, 233, 0.8);
}

.splash::before {
	left: -15px;
	animation: splash-left 0.6s ease-out;
}

.splash::after {
	right: -15px;
	animation: splash-right 0.6s ease-out;
}

@keyframes fall {
	0% {
		top: -10%;
		opacity: 0;
		transform: translateY(0) scaleY(1);
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
		transform: translateY(0) scaleY(1);
	}
	100% {
		top: 110%;
		opacity: 0;
		transform: translateY(20px) scaleY(1.2);
	}
}

@keyframes splash {
	0% {
		opacity: 1;
		transform: scale(0.5);
	}
	100% {
		opacity: 0;
		transform: scale(2);
	}
}

@keyframes splash-left {
	0% {
		transform: translate(0, 0);
		opacity: 1;
	}
	100% {
		transform: translate(-20px, -15px);
		opacity: 0;
	}
}

@keyframes splash-right {
	0% {
		transform: translate(0, 0);
		opacity: 1;
	}
	100% {
		transform: translate(20px, -15px);
		opacity: 0;
	}
}

/* Ripple effect na dole */
.ripple {
	position: absolute;
	width: 40px;
	height: 40px;
	border: 2px solid rgba(14, 165, 233, 0.6);
	border-radius: 50%;
	animation: ripple 1.5s ease-out;
	opacity: 0;
}

@keyframes ripple {
	0% {
		transform: scale(0);
		opacity: 1;
	}
	100% {
		transform: scale(3);
		opacity: 0;
	}
}

/* Buttons */
.btn-primary {
	background: linear-gradient(135deg, #0ea5e9, #0284c7);
	border: none;
	padding: 12px 32px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.btn-outline-light {
	border: 2px solid rgba(255, 255, 255, 0.8);
	padding: 12px 32px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	transform: translateY(-2px);
}

/* Icons in USP box */
.bi {
	font-size: 1.5rem;
}

.bg-opacity-10 {
	background-color: rgba(255, 255, 255, 0.1) !important;
}

.text-primary {
	color: #0ea5e9 !important;
}

/* =========================================================
   6) SECTION HEADINGS
   ========================================================= */
.section {
	padding: 80px 0;
}
.section__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	margin-bottom: 1rem;
	text-align: center;
	color: #1e293b;
	position: relative;
	padding-bottom: 1.25rem;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}
.section__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #0693d4);
	border-radius: 2px;
}
.section__subtitle {
	color: #55657d;
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
	font-size: 1.1rem;
	line-height: 1.7;
	font-weight: 400;
	opacity: 0.95;
}

/* =========================================================
   7) CARDS / SHARED COMPONENTS
   ========================================================= */
.card {
	border: none;
	border-radius: 18px;
	background: var(--white);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1.5rem;
}
.card:hover {
	box-shadow: 0 12px 30px rgba(0, 174, 255, 0.326);
}

.card__icon,
.value-card__icon {
	width: 80px;
	height: 80px;
	border-radius: 22px;
	background: linear-gradient(135deg, var(--primary), #0284c7);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 2.25rem;
	margin-bottom: 1.5rem;
	position: relative;
	overflow: hidden;
}
.card__icon::after,
.value-card__icon::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle at 30% 30%,
		rgba(255, 255, 255, 0.25),
		transparent 60%
	);
	transform: rotate(25deg);
	opacity: 0;
	transition: opacity 0.4s ease;
}
.card:hover .card__icon::after,
.card:hover .value-card__icon::after {
	opacity: 1;
}

/* =========================================================
   8) ABOUT (values)
   ========================================================= */
.value-card {
	background: var(--white);
	border-radius: 18px;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	padding: 2rem 1.5rem;
}
.value-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(14, 165, 233, 0.15);
}
.value-card h4 {
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.75rem;
	font-size: 1.2rem;
}
.value-card p {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* =========================================================
   9) SERVICES (minor)
   ========================================================= */
.service-card {
	padding: 2.5rem;
}
.service-card__title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--dark);
}

/* =========================================================
   10) FAQ
   ========================================================= */
#faq {
	background: #fff;
	position: relative;
	overflow: hidden;
}
#faq::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(14, 165, 233, 0.05) 0%,
		transparent 70%
	);
	border-radius: 50%;
	pointer-events: none;
}
.accordion-item {
	background: var(--white);
	border: none !important;
	border-radius: 16px !important;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}
.accordion-item:hover {
	box-shadow: 0 8px 30px rgba(14, 165, 233, 0.12) !important;
	transform: translateY(-2px);
}
.accordion-header {
	border: none;
}
.accordion-button {
	background: transparent;
	border: none;
	padding: 1.5rem 1.75rem;
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--dark);
	box-shadow: none !important;
	transition: all 0.3s ease;
	position: relative;
}
.accordion-button:not(.collapsed) {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.08),
		rgba(6, 182, 212, 0.05)
	);
	color: var(--primary);
	border-bottom: 2px solid rgba(14, 165, 233, 0.15);
}
.accordion-button:hover {
	background: rgba(14, 165, 233, 0.04);
}
.accordion-button::before {
	content: "";
	position: absolute;
	left: 1.75rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	background: var(--primary);
	border-radius: 50%;
	transition: all 0.3s ease;
}
.accordion-button:not(.collapsed)::before {
	width: 6px;
	height: 6px;
	left: 0.75rem;
}
.accordion-button {
	padding-left: 1.75rem;
}
.accordion-button:not(.collapsed) {
	padding-left: 2.25rem;
}
.accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230ea5e9'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	width: 1.5rem;
	height: 1.5rem;
	transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
	transform: rotate(-180deg);
}
.accordion-body {
	padding: 1.75rem 1.75rem 1.5rem;
	color: var(--secondary);
	font-size: 1.05rem;
	line-height: 1.75;
	background: rgba(248, 250, 252, 0.5);
	border-top: 1px solid rgba(14, 165, 233, 0.08);
}
.accordion-collapse {
	transition: height 0.35s ease;
}
#faqAccordion {
	counter-reset: faq-counter;
}

/* =========================================================
   11) LISTS / BENEFITS
   ========================================================= */
.benefit-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}
.benefit-list li {
	padding: 0.5rem 0;
	display: flex;
	align-items: left;
	text-align: left;
	gap: 0.75rem;
}
.benefit-list li::before {
	content: "✓";
	color: var(--primary);
	font-weight: 700;
	font-size: 1.2rem;
}

/* =========================================================
   12) GALLERY
   ========================================================= */
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}
.gallery__item {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 4/3;
}
.gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.gallery__item:hover img {
	transform: scale(1.1);
}
.gallery__badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--white);
	color: var(--dark);
	padding: 0.4rem 1rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.85rem;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   CUSTOM CTA – przycisk do video (TikTok / realizacje)
   ========================================================= */
.btn-video-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--dark);
	background: #ffffff;
	border: none;
	border-radius: 60px;
	padding: 1rem 2.5rem;
	box-shadow: 0 8px 25px rgba(14, 165, 233, 0.25);
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
}

/* efekt świetlnego rozbłysku na hover */
.btn-video-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0.4),
		rgba(255, 255, 255, 0)
	);
	transform: skewX(-25deg);
	transition: left 0.6s ease;
}

.btn-video-cta:hover::before {
	left: 130%;
}

/* kolor hover + delikatne uniesienie */
.btn-video-cta:hover {
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35);
}

/* ikonka – duża i z efektem koloru */
.btn-video-cta i {
	font-size: 2.2rem;
	color: #e50914;
	transition: transform 0.4s ease;
}

.btn-video-cta:hover i {
	transform: rotate(10deg) scale(1.1);
	color: #ff002b;
}

/* tekst – ciemny z czerwonym akcentem */
.btn-video-cta span strong {
	color: #e50914;
	font-weight: 800;
}
/* =========================================================
   CUSTOM BUTTON – "Pokaż więcej" (spójny z video CTA)
   ========================================================= */
.btn-show-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: #ffffff;
	color: var(--primary);
	border: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	padding: 0.85rem 2rem;
	box-shadow: 0 5px 25px rgba(14, 165, 233, 0.2);
	transition: all 0.3s ease;
}

.btn-show-more i {
	font-size: 1.3rem;
	transition: transform 0.3s ease;
}

.btn-show-more:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(14, 165, 233, 0.35);
	color: var(--dark);
}

.btn-show-more:hover i {
	transform: rotate(90deg);
	color: var(--primary);
}

/* =========================================================
   13) PRICING
   ========================================================= */
.pricing-card {
	padding: 2.5rem;
	text-align: center;
	position: relative;
}
.pricing-card__price {
	font-size: 3rem;
	font-weight: 800;
	color: var(--primary);
	margin: 1.5rem 0;
}
.pricing-card__unit {
	font-size: 1rem;
	color: var(--secondary);
	font-weight: 500;
}

/* =========================================================
   14) STATS
   ========================================================= */
.stats {
	background: linear-gradient(135deg, var(--primary), #0284c7);
	color: var(--white);
}
.stat-item {
	text-align: center;
	padding: 2rem 1rem;
}
.stat-item__number {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	display: block;
}
.stat-item__label {
	font-size: 1.1rem;
	opacity: 0.95;
}
/* =========================================================
   15) TESTIMONIALS
   ========================================================= */
/* Minimalne style do nadpisania domyślnych Bootstrap */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
	display: none !important;
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
	opacity: 1 !important;
	transform: translateY(-50%) scale(1.1) !important;
}

.card:hover {
	transform: translateY(-5px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* =========================================================
   16) PARTNERS
   ========================================================= */
.partners-section {
	background: linear-gradient(135deg, #3b82f6, #0ea5e9);
	padding: 70px 0;
	overflow: hidden;
}
.partners-container {
	overflow: visible;
	width: 100%;
	position: relative;
}
.partners-track {
	display: flex;
	align-items: center;
	gap: 70px;
	white-space: nowrap;
	will-change: transform;
}
.partner-logo {
	flex: 0 0 auto;
}
.partner-logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding: 10px 40px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	min-width: 240px;
	height: 150px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-logo a:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(14, 165, 233, 0.25);
}
.partner-logo img {
	max-width: 200px;
	max-height: 120px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.8;
	transition: all 0.3s ease;
}
.partner-logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
}
/* Banner section */

/* Section banner */
.banner-partner {
	background-image: url("/assets/img/banners/landmat_bg.png");
	background-size: cover;
	background-position: center bottom;
	height: 200px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	box-sizing: border-box;
}

/* Overlay */
.banner-partner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

/* Wrapper for content */
.banner-wrapper {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

/* Logo */
.partner-banner-logo {
	width: 100px;
	height: 100px;
	object-fit: contain;
	margin-right: 20px;
}

/* Content */
.banner-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
}

/* Title */
.banner-title {
	font-size: 1.4rem;
	font-weight: 500;
	margin: 0 0 15px 0;
}

/* Subtitle */
.banner-subtitle {
	font-size: 1rem;
	font-weight: 400;
	margin: 0 0 15px 0;
}

/* Call to Action Button */
.banner-btn-cta {
	background-color: #6bbf47;
	color: white;
	padding: 8px 16px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	margin-bottom: 15px;
}

/* Hover effect for button */
.banner-btn-cta:hover {
	background-color: #5aa73c;
}

/* Media Query for smaller screens (below 768px) */
@media (max-width: 768px) {
	.banner-partner {
		height: 300px;
		/* Zwiększamy wysokość, bo układ będzie pionowy */
		padding: 20px 15px;
		/* Mniejszy padding na małych ekranach */
	}

	.banner-wrapper {
		flex-direction: column;
		/* Układ pionowy */
	}

	.partner-banner-logo {
		width: 80px;
		/* Mniejsze logo */
		height: 80px;
		margin-right: 0;
		/* Usuwamy odstęp z prawej */
		margin-bottom: 15px;
		/* Dodajemy odstęp na dole */
	}

	.banner-title {
		font-size: 1.2rem;
		/* Mniejszy font dla tytułu */
	}

	.banner-subtitle {
		font-size: 0.9rem;
		/* Mniejszy font dla podtytułu */
	}

	.banner-btn-cta {
		padding: 6px 12px;
		/* Mniejszy przycisk */
		font-size: 0.9rem;
		/* Mniejszy font dla przycisku */
	}
}

/* =========================================================
   17) CONTACT
   ========================================================= */
.contact-form {
	background: var(--white);
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}
.form-control,
.form-select {
	padding: 0.875rem 1.25rem;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	transition: var(--transition);
}
.form-control:focus,
.form-select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.15);
}
.contact-info {
	background: var(--white);
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}
.contact-info__item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid #e2e8f0;
}
.contact-info__item:last-child {
	border-bottom: none;
}
.contact-info__icon {
	width: 50px;
	height: 50px;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}
#formSuccess {
	transition: opacity 0.6s ease;
}

/* =========================================================
   18) FOOTER
   ========================================================= */
.footer {
	background: var(--dark);
	color: rgba(255, 255, 255, 0.8);
	padding: 4rem 0 2rem;
}
.footer a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: var(--transition);
}
.footer a:hover {
	color: var(--primary);
}
.footer__title {
	color: var(--white);
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}
.social-links a {
	display: inline-flex;
	width: 45px;
	height: 45px;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	margin-right: 0.75rem;
	font-size: 1.2rem;
	transition: var(--transition);
}
.social-links a:hover {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-3px);
}

/* =========================================================
   19) GLOBAL COMPONENTS
   ========================================================= */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 999;
	transition: var(--transition);
	box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
}
.back-to-top:hover {
	transform: translateY(-5px);
}
.back-to-top.show {
	display: flex;
}

.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}
.lightbox.active {
	display: flex;
}
.lightbox__content {
	max-width: 90%;
	max-height: 90%;
}
.lightbox__close {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--white);
	color: var(--dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	transition: var(--transition);
}
.lightbox__close:hover {
	transform: rotate(90deg);
}

/* =========================================================
   20) COOKIE NOTICE
   ========================================================= */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--dark);
	color: var(--white);
	padding: 1.5rem;
	z-index: 900; /* niżej niż offcanvas */
	display: none;
	box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.3s ease;
}
.cookie-notice.show {
	display: block;
	transform: translateY(0);
	opacity: 1;
}

/* =========================================================
Licznik odwiedzin
========================================================= */
/* === Licznik odwiedzin === */
.counter {
	background: #f8fafc;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.visit-counter {
	font-family: "Inter", sans-serif;
	font-size: 0.9rem;
	letter-spacing: 0.2px;
}
.visit-counter i {
	opacity: 0.8;
	transform: translateY(-1px);
}
@media (max-width: 576px) {
	.visit-counter {
		justify-content: center;
		text-align: center;
		width: 100%;
	}
}

/* =========================================================
   21) ANIMATIONS
   ========================================================= */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.fade-in-up {
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

/* =========================================================
   22) MEDIA QUERIES
   ========================================================= */
@media (max-width: 991.98px) {
	.section {
		padding: 60px 0;
	}
	.hero {
		min-height: 80vh;
	}

	/* Offcanvas ergonomia */
	.offcanvas {
		width: 85vw;
		max-width: 420px;
		border-top-left-radius: 16px;
		border-bottom-left-radius: 16px;
	}
	.offcanvas .offcanvas-header {
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}
	.offcanvas .offcanvas-body {
		padding: 1rem 1.25rem 1.25rem;
	}

	.navbar .nav-link {
		padding: 0.75rem 0;
		font-size: 1.05rem;
	}
	.navbar .btn.btn-primary {
		width: 100%;
		margin-top: 0.75rem;
		border-radius: 12px;
	}
}

@media (max-width: 768px) {
	/* About spacing */
	.value-card {
		padding: 1.75rem 1.25rem;
	}

	/* Partners – spójny blok RWD */
	.partners-section {
		padding: 50px 0;
	}
	.partners-track {
		gap: 30px;
	}
	.partner-logo a {
		padding: 20px 30px;
		min-width: 140px;
		height: 80px;
	}
	.partner-logo img {
		max-width: 100px;
		max-height: 50px;
	}
}
html,
body {
	overflow-x: hidden;
}
