/* ── Block 1 ── */
.main-nav {
				position: fixed;
				top: 0;
				left: 0;
				right: 0;
				background: rgba(255, 255, 255, 0.95);
				backdrop-filter: blur(10px);
				z-index: 1000;
				box-shadow: 0 2px 10px rgba(0,0,0,0.1);
				transition: all 0.3s ease;
			}

			.nav-container {
				max-width: 1200px;
				margin: 0 auto;
				padding: 1rem 2rem;
				display: flex;
				justify-content: flex-start;
				align-items: center;
			}

			.nav-logo {
				margin-right: 2.5rem;
			}

			.nav-logo a {
				color: #4acaa8;
				font-size: 1.25rem;
				font-weight: bold;
				text-decoration: none;
				transition: color 0.3s ease;
				white-space: nowrap;
			}

			.nav-logo a:hover {
				color: #3ab898;
			}

			.nav-links {
				display: flex;
				gap: 2rem;
				align-items: center;
				margin-left: auto;
			}

			.nav-links a {
				color: #666;
				text-decoration: none;
				font-weight: 500;
				transition: color 0.3s ease;
				position: relative;
				white-space: nowrap;
			}

			.nav-links a:hover {
				color: #4acaa8;
			}

			.nav-links a::after {
				content: '';
				position: absolute;
				bottom: -5px;
				left: 0;
				width: 0;
				height: 2px;
				background: #4acaa8;
				transition: width 0.3s ease;
			}

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

			.nav-links a.active {
				color: #4acaa8;
			}

			.nav-links a.active::after {
				width: 100%;
			}

			.nav-hamburger {
				display: none;
				flex-direction: column;
				gap: 5px;
				background: none;
				border: none;
				cursor: pointer;
				padding: 0.5rem;
				margin-left: auto;
			}

			.nav-hamburger span {
				display: block;
				width: 25px;
				height: 2px;
				background: #4acaa8;
				border-radius: 2px;
				transition: all 0.3s ease;
			}

			.nav-hamburger.open span:nth-child(1) {
				transform: rotate(45deg) translate(5px, 5px);
			}

			.nav-hamburger.open span:nth-child(2) {
				opacity: 0;
			}

			.nav-hamburger.open span:nth-child(3) {
				transform: rotate(-45deg) translate(5px, -5px);
			}

			@media screen and (max-width: 768px) {
				.nav-container {
					flex-wrap: wrap;
					padding: 0.75rem 1.5rem;
				}

				.nav-hamburger {
					display: flex;
				}

				.nav-links {
					display: none;
					flex-direction: column;
					width: 100%;
					gap: 0;
					margin-left: 0;
					padding: 0.5rem 0 1rem;
					border-top: 1px solid #f0f0f0;
					margin-top: 0.5rem;
				}

				.nav-links.open {
					display: flex;
				}

				.nav-links a {
					font-size: 1rem;
					padding: 0.75rem 0;
					border-bottom: 1px solid #f5f5f5;
				}

				.nav-links a:last-child {
					border-bottom: none;
				}

				.nav-links a::after {
					display: none;
				}
			}

/* ── Block 2 ── */
#hero {
				position: relative;
				height: 100vh;
				min-height: 600px;
				display: flex;
				align-items: center;
				justify-content: center;
				overflow: hidden;
			}

			.hero-bg {
				position: absolute;
				inset: 0;
				background-size: cover;
				background-position: center;
				transition: transform 8s ease;
			}

			.hero-overlay {
				position: absolute;
				inset: 0;
				background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.38) 100%);
			}

			.hero-content {
				position: relative;
				z-index: 1;
				text-align: center;
				color: white;
				padding: 6rem 2rem 2rem;
				max-width: 900px;
				width: 100%;
			}

			.hero-content h1 {
				font-size: clamp(2.2rem, 6vw, 4.5rem);
				font-weight: 700;
				margin-bottom: 0.4em;
				text-shadow: 0 2px 20px rgba(0,0,0,0.5);
				letter-spacing: -0.01em;
				color: white;
			}

			.hero-subtitle {
				font-size: clamp(1rem, 2.5vw, 1.4rem);
				margin-bottom: 1.5em !important;
				opacity: 0.9;
				text-shadow: 0 1px 10px rgba(0,0,0,0.5);
			}

			.hero-badges {
				display: flex;
				gap: 1em;
				justify-content: center;
				flex-wrap: wrap;
				margin-bottom: 2.5em;
			}

			.hero-badges span {
				background: rgba(255,255,255,0.15);
				backdrop-filter: blur(10px);
				border: 1px solid rgba(255,255,255,0.3);
				padding: 0.5em 1.2em;
				border-radius: 100px;
				font-size: 0.95em;
				white-space: nowrap;
			}

			.hero-badges i {
				margin-right: 0.4em;
				color: #4acaa8;
			}

			.hero-buttons {
				display: flex;
				gap: 1.5em;
				justify-content: center;
				flex-wrap: wrap;
				margin-bottom: 3em;
			}

			.hero-btn-primary {
				background: #4acaa8;
				color: white !important;
				padding: 1em 2.5em;
				border-radius: 100px;
				text-decoration: none !important;
				font-weight: 600;
				font-size: 1.1em;
				transition: all 0.3s ease;
				box-shadow: 0 4px 20px rgba(74,202,168,0.4);
			}

			.hero-btn-primary:hover {
				background: #3ab898;
				transform: translateY(-3px);
				box-shadow: 0 8px 30px rgba(74,202,168,0.5);
			}

			.hero-btn-secondary {
				background: transparent;
				color: white !important;
				padding: 1em 2.5em;
				border-radius: 100px;
				text-decoration: none !important;
				font-weight: 600;
				font-size: 1.1em;
				border: 2px solid rgba(255,255,255,0.7);
				transition: all 0.3s ease;
			}

			.hero-btn-secondary:hover {
				background: rgba(255,255,255,0.15);
				border-color: white;
				transform: translateY(-3px);
			}

			.hero-scroll {
				animation: bounceDown 2s infinite;
			}

			.hero-scroll a {
				color: rgba(255,255,255,0.7);
				font-size: 1.8em;
				display: inline-block;
				transition: color 0.3s ease;
				text-decoration: none;
			}

			.hero-scroll a:hover {
				color: white;
			}

			@keyframes bounceDown {
				0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
				40% { transform: translateY(8px); }
				60% { transform: translateY(4px); }
			}

			@media screen and (max-width: 768px) {
				.hero-content h1 { font-size: 2.2rem; }

				.hero-buttons {
					flex-direction: column;
					align-items: center;
					gap: 1em;
				}

				.hero-btn-primary, .hero-btn-secondary {
					width: 100%;
					max-width: 280px;
					text-align: center;
				}
			}

/* ── Block 3 ── */
.about-container {
							max-width: 1200px;
							margin: 0 auto;
							padding: 2em 0;
						}

						.about-content {
							display: flex;
							gap: 3em;
							align-items: center;
							margin-bottom: 3em;
						}

						.about-text {
							flex: 1;
							text-align: left;
						}

						.about-text h3 {
							color: #4acaa8;
							margin-bottom: 1em;
						}

						.about-text p {
							margin-bottom: 1em;
							line-height: 1.6;
							text-align: justify;
						}

						.about-image {
							flex: 1;
							border-radius: 8px;
							overflow: hidden;
							box-shadow: 0 2px 10px rgba(0,0,0,0.1);
						}

						.about-image img {
							width: 100%;
							height: auto;
							display: block;
						}

						.about-features {
							display: grid;
							grid-template-columns: repeat(3, 1fr);
							gap: 2em;
							margin-top: 2em;
						}

						.feature-card {
							background: #fff;
							padding: 2.5em 2em;
							border-radius: 16px;
							text-align: center;
							box-shadow: 0 4px 20px rgba(0,0,0,0.08);
							transition: all 0.3s ease;
							border: 1px solid #f0f0f0;
						}

						.feature-card:hover {
							transform: translateY(-8px);
							box-shadow: 0 12px 32px rgba(74,202,168,0.18);
							border-color: #4acaa8;
						}

						.feature-card > i {
							display: flex;
							align-items: center;
							justify-content: center;
							width: 72px;
							height: 72px;
							background: linear-gradient(135deg, #4acaa8, #3ab898);
							border-radius: 50%;
							color: #fff !important;
							font-size: 1.75em;
							margin: 0 auto 1.2em;
							transition: transform 0.3s ease;
						}

						.feature-card:hover > i {
							transform: scale(1.1);
						}

						.feature-card h4 {
							color: #2c3e50;
							margin: 0 0 0.5em;
							font-size: 1.15em;
							font-weight: 600;
						}

						.feature-card p {
							margin: 0;
							color: #666;
							line-height: 1.6;
						}

						.beach-distances {
							list-style: none;
							padding: 0;
							margin: 0.5em 0 0 0;
							text-align: left;
						}

						.beach-distances li {
							margin-bottom: 0.3em;
							color: #666;
							font-size: 0.95em;
						}

						.beach-distances li:last-child {
							margin-bottom: 0;
						}

						@media screen and (max-width: 980px) {
							.about-content {
								flex-direction: column;
							}

							.about-features {
								grid-template-columns: 1fr;
							}
						}

/* ── Block 4 ── */
.offer-container {
							max-width: 1200px;
							margin: 0 auto;
							padding: 2em 0;
						}

						.offer-intro {
							text-align: center;
							max-width: 800px;
							margin: 0 auto 3em;
						}

						.offer-intro p {
							margin-bottom: 1em;
							line-height: 1.7;
							font-size: 1.05em;
							color: #555;
						}

						.offer-cards {
							display: grid;
							grid-template-columns: repeat(2, 1fr);
							gap: 3em;
						}

						.offer-card {
							background: #fff;
							border-radius: 16px;
							overflow: hidden;
							box-shadow: 0 4px 20px rgba(0,0,0,0.08);
							transition: all 0.3s ease;
							align-items: flex-start;
							border: 1px solid #f0f0f0;
						}

						.offer-card:hover {
							transform: translateY(-8px);
							box-shadow: 0 8px 30px rgba(74, 202, 168, 0.2);
							border-color: #4acaa8;
						}

						.offer-image {
							width: 100%;
							height: 280px;
							overflow: hidden;
							position: relative;
						}

						.offer-image img {
							width: 100%;
							height: 100%;
							object-fit: cover;
							transition: transform 0.3s ease;
						}

						.offer-card:hover .offer-image img {
							transform: scale(1.05);
						}

						.offer-content {
							padding: 2.5em;
							text-align: left;
						}

						.offer-content h3 {
							color: #2c3e50;
							margin-bottom: 0.8em;
							font-size: 1.8em;
							font-weight: 600;
							position: relative;
							padding-bottom: 0.5em;
						}

						.offer-content h3:after {
							content: '';
							position: absolute;
							bottom: 0;
							left: 0;
							width: 60px;
							height: 3px;
							background: linear-gradient(90deg, #4acaa8, #3ab898);
							border-radius: 2px;
						}

						.offer-content > p {
							color: #666;
							font-size: 1.1em;
							margin-bottom: 1.5em;
						}

						.offer-features {
							list-style: none;
							padding: 0;
							margin: 1.5em 0;
							text-align: left;
							background: #f8f9fa;
							padding: 1.5em;
							border-radius: 12px;
							border-left: 4px solid #4acaa8;
						}

						.offer-features li {
							display: flex;
							align-items: center;
							margin-bottom: 0.8em;
							color: #555;
							font-size: 1.05em;
						}

						.offer-features li:last-child {
							margin-bottom: 0;
						}

						.offer-features i {
							color: #4acaa8;
							margin-right: 0.8em;
							width: 22px;
							font-size: 1.1em;
						}

						.pricing-info {
							margin: 2em 0;
							padding: 1.5em;
							background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
							border-radius: 12px;
							border: 1px solid #e9ecef;
						}

						.pricing-info h4 {
							color: #2c3e50;
							margin-bottom: 1.2em;
							font-size: 1.3em;
							font-weight: 600;
						}

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

						.price-list li {
							display: flex;
							justify-content: space-between;
							align-items: flex-start;
							margin-bottom: 0.5em;
							padding-bottom: 0.5em;
							border-bottom: 1px solid #eee;
							flex-wrap: wrap;
						}

						.price-list li.price-item-with-note {
							flex-direction: column;
						}

						.price-row {
							display: flex;
							justify-content: space-between;
							width: 100%;
							align-items: flex-start;
						}

						.price-list li:last-child {
							border-bottom: none;
							margin-bottom: 0;
							padding-bottom: 0;
						}

						.price-list .date {
							color: #666;
							flex: 1;
							min-width: 200px;
						}

						.price-list .price {
							font-weight: 700;
							color: #4acaa8;
							white-space: nowrap;
							font-size: 1.1em;
						}

						.price-note {
							display: block;
							width: 100%;
							font-size: 0.9em;
							color: #666;
							font-style: italic;
							margin-top: 0.5em;
							padding-left: 0;
							line-height: 1.5;
						}

						.pet-info {
							margin-top: 1.5em;
							padding-top: 1.5em;
							border-top: 2px solid #e9ecef;
							color: #555;
							font-size: 0.95em;
							background: #f8f9fa;
							padding: 1em 1.2em;
							border-radius: 8px;
							margin-left: -1.2em;
							margin-right: -1.2em;
						}

						.pet-info i {
							color: #4acaa8;
							margin-right: 0.6em;
							font-size: 1.1em;
						}

						.facilities-info {
							margin: 2em 0;
							padding: 1.5em;
							background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
							border-radius: 12px;
							border: 1px solid #e9ecef;
						}

						.facilities-info h4 {
							color: #2c3e50;
							margin-bottom: 1.2em;
							font-size: 1.3em;
							font-weight: 600;
						}

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

						.facilities-list li {
							display: flex;
							align-items: flex-start;
							margin-bottom: 1em;
							color: #555;
							line-height: 1.5;
							font-size: 1.05em;
						}

						.facilities-list li:last-child {
							margin-bottom: 0;
						}

						.facilities-list i {
							color: #4acaa8;
							margin-right: 1em;
							margin-top: 0.2em;
							width: 20px;
							text-align: center;
							font-size: 1.1em;
						}

						.location-buttons {
							display: flex;
							gap: 1.2em;
							justify-content: center;
							margin: 2em 0;
							flex-wrap: wrap;
						}

						.location-buttons .button.small {
							flex: 1 1 auto;
							min-width: 200px;
							max-width: 250px;
							border-radius: 8px;
							transition: all 0.3s ease;
							font-weight: 600;
							font-size: 1em;
							padding: 1em 1.5em;
							background: #fff;
							color: #2c3e50;
							border: 2px solid #4acaa8;
							text-decoration: none;
							display: flex;
							align-items: center;
							justify-content: center;
							white-space: nowrap;
							overflow: hidden;
							text-overflow: ellipsis;
						}

						.location-buttons .button.small:hover {
							transform: translateY(-2px);
							box-shadow: 0 4px 12px rgba(74, 202, 168, 0.3);
							background: #4acaa8;
							color: #fff;
						}

						.button.zarezerwuj {
							display: flex;
							align-items: center;
							justify-content: center;
							margin: 2em auto 0 auto;
							width: 100%;
							max-width: 250px;
							border-radius: 8px;
							font-weight: 600;
							font-size: 1em;
							padding: 1em 1.5em;
							transition: all 0.3s ease;
							background: linear-gradient(135deg, #4acaa8 0%, #3ab898 100%);
							color: #fff;
							text-decoration: none;
							border: none;
							white-space: nowrap;
						}

						.button.zarezerwuj:hover {
							transform: translateY(-2px);
							box-shadow: 0 6px 20px rgba(74, 202, 168, 0.4);
						}

						@media screen and (max-width: 980px) {
							.offer-cards {
								grid-template-columns: 1fr;
							}
						}

/* ── Block 5 ── */
.section-description {
							margin-bottom: 1em;
							font-size: 1.2em;
							color: #666;
						}

						.equipment-note {
							margin-bottom: 3em;
							font-size: 1em;
							color: #888;
							font-style: italic;
							text-align: center;
							padding: 1em;
							background: #f8f9fa;
							border-radius: 8px;
							border-left: 4px solid #4acaa8;
						}

						.equipment-grid {
							display: grid;
							grid-template-columns: repeat(2, 1fr);
							gap: 2.5em;
							max-width: 1200px;
							margin: 0 auto;
						}

						.equipment-card {
							background: #fff;
							border-radius: 16px;
							padding: 0;
							box-shadow: 0 4px 20px rgba(0,0,0,0.08);
							transition: all 0.3s ease;
							display: flex;
							flex-direction: row;
							overflow: hidden;
							border: 1px solid #f0f0f0;
						}

						.equipment-card:hover {
							transform: translateY(-8px);
							box-shadow: 0 8px 30px rgba(74, 202, 168, 0.2);
							border-color: #4acaa8;
						}

						.equipment-icon {
							background: linear-gradient(135deg, #4acaa8 0%, #3ab898 100%);
							padding: 2.5em 2em;
							display: flex;
							align-items: center;
							justify-content: center;
							min-width: 120px;
							flex-shrink: 0;
						}

						.equipment-icon i {
							font-size: 2.8em;
							color: #fff;
							text-shadow: 0 2px 10px rgba(0,0,0,0.15);
						}

						.equipment-content {
							flex: 1;
							padding: 2.5em;
							display: flex;
							flex-direction: column;
						}

						.equipment-content h3 {
							color: #2c3e50;
							margin-bottom: 1.2em;
							font-size: 1.6em;
							font-weight: 600;
							position: relative;
							padding-bottom: 0.5em;
						}

						.equipment-content h3:after {
							content: '';
							position: absolute;
							bottom: 0;
							left: 0;
							width: 50px;
							height: 3px;
							background: linear-gradient(90deg, #4acaa8, #3ab898);
							border-radius: 2px;
						}

						.equipment-content h3 + h3 {
							margin-top: 2em;
						}

						.equipment-list {
							text-align: left;
							list-style-type: none;
							padding: 0;
							margin: 0;
						}

						.equipment-list li {
							margin-bottom: 0.9em;
							position: relative;
							padding-left: 1.8em;
							color: #555;
							line-height: 1.6;
							font-size: 1.05em;
						}

						.equipment-list li:before {
							content: "✓";
							position: absolute;
							left: 0;
							color: #4acaa8;
							font-size: 1.1em;
							font-weight: bold;
							top: 0;
						}

						.sub-list {
							list-style-type: none;
							padding-left: 1.8em;
							margin-top: 0.6em;
							background: #f8f9fa;
							padding: 1em 1em 1em 1.8em;
							border-radius: 8px;
							margin-top: 0.8em;
						}

						.sub-list li {
							font-size: 0.95em;
							margin-bottom: 0.5em;
							color: #666;
						}

						.sub-list li:before {
							content: "•";
							color: #4acaa8;
						}

						.room-divider {
							height: 2px;
							background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
							margin: 2em 0;
							border-radius: 2px;
						}

						@media screen and (max-width: 980px) {
							.equipment-grid {
								grid-template-columns: 1fr;
								gap: 2em;
							}

							.equipment-card {
								flex-direction: column;
							}

							.equipment-icon {
								min-width: 100%;
								padding: 2em;
							}

							.equipment-content {
								padding: 2em;
							}
						}

/* ── Block 6 ── */
.interior-gallery {
							display: grid;
							grid-template-columns: repeat(3, 1fr);
							gap: 2.5em;
							max-width: 1200px;
							margin: 0 auto;
							padding: 2em 0;
						}

						.interior-item {
							background: #fff;
							border-radius: 16px;
							overflow: hidden;
							box-shadow: 0 4px 20px rgba(0,0,0,0.08);
							transition: all 0.3s ease;
							border: 1px solid #f0f0f0;
							display: flex;
							flex-direction: column;
						}

						.interior-item:hover {
							transform: translateY(-8px);
							box-shadow: 0 8px 30px rgba(74, 202, 168, 0.2);
							border-color: #4acaa8;
						}

						.interior-item img {
							width: 100%;
							height: 280px;
							object-fit: cover;
							display: block;
							transition: transform 0.3s ease;
						}

						.interior-item:hover img {
							transform: scale(1.05);
						}

						.interior-item a {
							position: relative;
							display: block;
							overflow: hidden;
						}

						.interior-item a::after {
							content: '\f00e';
							font-family: 'Font Awesome 5 Free';
							font-weight: 900;
							position: absolute;
							inset: 0;
							background: rgba(74,202,168,0.75);
							color: white;
							font-size: 2em;
							display: flex;
							align-items: center;
							justify-content: center;
							opacity: 0;
							transition: opacity 0.3s ease;
						}

						.interior-item:hover a::after {
							opacity: 1;
						}

						.interior-item h4 {
							color: #2c3e50;
							margin: 1.5em 1.5em 0.5em 1.5em;
							font-size: 1.3em;
							font-weight: 600;
							position: relative;
							padding-bottom: 0.5em;
						}

						.interior-item h4:after {
							content: '';
							position: absolute;
							bottom: 0;
							left: 0;
							width: 40px;
							height: 2px;
							background: linear-gradient(90deg, #4acaa8, #3ab898);
							border-radius: 2px;
						}

						.interior-item p {
							margin: 0 1.5em 1.5em 1.5em;
							color: #666;
							line-height: 1.5;
							font-size: 0.95em;
						}

						@media screen and (max-width: 980px) {
							.interior-gallery {
								grid-template-columns: repeat(2, 1fr);
								gap: 2em;
							}
						}

						@media screen and (max-width: 600px) {
							.interior-gallery {
								grid-template-columns: 1fr;
								gap: 1.5em;
							}

							.interior-item img {
								height: 240px;
							}
						}

/* ── Block 7 ── */
#galeria {
							padding-top: 120px;
						}
						.simple-gallery {
							width: 100%;
							margin: 0 auto 2em auto;
						}
						.gallery-row {
							display: flex;
							flex-wrap: wrap;
							justify-content: center;
							gap: 2.5em;
							overflow-x: unset;
							-webkit-overflow-scrolling: unset;
						}
						.gallery-item {
							background: #fff;
							border-radius: 16px;
							box-shadow: 0 4px 20px rgba(0,0,0,0.08);
							padding: 0;
							width: 280px;
							min-width: 280px;
							display: flex;
							flex-direction: column;
							align-items: center;
							overflow: hidden;
							transition: all 0.3s ease;
							border: 1px solid #f0f0f0;
						}
						.gallery-item:hover {
							transform: translateY(-8px);
							box-shadow: 0 8px 30px rgba(74, 202, 168, 0.2);
							border-color: #4acaa8;
						}
						.gallery-item a {
							width: 100%;
							display: block;
							overflow: hidden;
						}
						.gallery-item img {
							width: 100%;
							height: 200px;
							object-fit: cover;
							background: #fff;
							border-radius: 0;
							margin-bottom: 0;
							box-shadow: none;
							cursor: pointer;
							transition: transform 0.3s ease;
							display: block;
						}
						.gallery-item:hover img {
							transform: scale(1.05);
						}
						.gallery-item .caption {
							text-align: center;
							color: #2c3e50;
							font-size: 1.1em;
							font-weight: 600;
							margin: 1.5em;
							padding-bottom: 0.5em;
							position: relative;
						}
						.gallery-item .caption:after {
							content: '';
							position: absolute;
							bottom: 0;
							left: 50%;
							transform: translateX(-50%);
							width: 40px;
							height: 2px;
							background: linear-gradient(90deg, #4acaa8, #3ab898);
							border-radius: 2px;
						}
						@media (max-width: 900px) {
							.gallery-row {
								gap: 2em;
							}
							.gallery-item {
								width: calc(50% - 1em);
								min-width: 200px;
								max-width: 300px;
							}
						}
						@media (max-width: 600px) {
							.gallery-row {
								flex-direction: column;
								gap: 2em;
								align-items: center;
							}
							.gallery-item {
								width: 90%;
								min-width: 280px;
								max-width: 400px;
							}
							.gallery-item img {
								height: 220px;
							}
						}

/* ── Block 8 ── */
.map-container {
							margin: 2em 0;
							border-radius: 16px;
							overflow: hidden;
							box-shadow: 0 8px 30px rgba(0,0,0,0.12);
							border: 1px solid #e9ecef;
						}

/* ── Block 9 ── */
.faq-container {
							max-width: 900px;
							margin: 0 auto;
							text-align: left;
						}

						.faq-item {
							margin-bottom: 1.5em;
							border: 1px solid #e9ecef;
							border-radius: 16px;
							overflow: hidden;
							background: #fff;
							box-shadow: 0 2px 10px rgba(0,0,0,0.05);
							transition: all 0.3s ease;
						}

						.faq-item:hover {
							box-shadow: 0 4px 20px rgba(74, 202, 168, 0.15);
							border-color: #4acaa8;
						}

						.faq-item.active {
							border-color: #4acaa8;
							box-shadow: 0 4px 20px rgba(74, 202, 168, 0.2);
						}

						.faq-question {
							padding: 1.5em 2em;
							background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
							cursor: pointer;
							display: flex;
							justify-content: space-between;
							align-items: center;
							transition: all 0.3s ease;
							position: relative;
						}

						.faq-question:hover {
							background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
						}

						.faq-item.active .faq-question {
							background: linear-gradient(135deg, #4acaa8 0%, #3ab898 100%);
							color: #fff;
						}

						.faq-item.active .faq-question:hover {
							background: linear-gradient(135deg, #3ab898 0%, #4acaa8 100%);
						}

						.faq-question h3 {
							margin: 0;
							font-size: 1.2em;
							color: #2c3e50;
							font-weight: 600;
							flex: 1;
							transition: color 0.3s ease;
						}

						.faq-item.active .faq-question h3 {
							color: #fff;
						}

						.faq-toggle {
							font-size: 1.8em;
							color: #4acaa8;
							transition: all 0.3s ease;
							font-weight: 300;
							width: 32px;
							height: 32px;
							display: flex;
							align-items: center;
							justify-content: center;
							border-radius: 50%;
							background: rgba(74, 202, 168, 0.1);
							flex-shrink: 0;
							margin-left: 1em;
						}

						.faq-item.active .faq-toggle {
							transform: rotate(45deg);
							background: rgba(255, 255, 255, 0.2);
							color: #fff;
						}

						.faq-answer {
							padding: 0;
							max-height: 0;
							overflow: hidden;
							transition: all 0.4s ease-out;
							background: #f8f9fa;
						}

						.faq-item.active .faq-answer {
							padding: 2em;
							max-height: 500px;
						}

						.faq-answer p {
							margin: 0;
							color: #555;
							line-height: 1.7;
							font-size: 1.05em;
						}

/* ── Block 10 ── */
.transfer-section {
									display: grid;
									grid-template-columns: repeat(2, 1fr);
									gap: 2em;
									margin-top: 3em;
									text-align: left;
								}

								.transfer-block {
									background: #fff;
									border-radius: 16px;
									padding: 2em;
									box-shadow: 0 4px 20px rgba(0,0,0,0.08);
									border: 1px solid #f0f0f0;
								}

								.transfer-block h3 {
									color: #2c3e50;
									font-size: 1.2em;
									font-weight: 600;
									margin-bottom: 1.2em;
									padding-bottom: 0.6em;
									border-bottom: 2px solid #4acaa8;
									display: flex;
									align-items: center;
									gap: 0.5em;
								}

								.transfer-block h3 i {
									color: #4acaa8;
								}

								.transfer-data {
									display: grid;
									grid-template-columns: auto 1fr;
									gap: 0.5em 1.2em;
									margin: 0;
									align-items: baseline;
								}

								.transfer-data dt {
									color: #888;
									font-size: 0.85em;
									text-transform: uppercase;
									letter-spacing: 0.05em;
									white-space: nowrap;
									padding-top: 0.1em;
								}

								.transfer-data dd {
									color: #2c3e50;
									font-weight: 500;
									margin: 0;
								}

								.account-number {
									font-family: monospace;
									font-size: 1em;
									color: #4acaa8 !important;
									font-weight: 700 !important;
									letter-spacing: 0.05em;
								}

								.transfer-note {
									color: #888;
									font-size: 0.85em;
									font-weight: 400;
								}

								@media screen and (max-width: 700px) {
									.transfer-section {
										grid-template-columns: 1fr;
									}
								}

/* ── Block 11 ── */
.regulations {
							text-align: left;
							max-width: 800px;
							margin: 0 auto;
							padding: 0 1em;
						}

						.regulations ol {
							list-style: none;
							padding: 0;
							margin: 0;
							counter-reset: reg-counter;
						}

						.regulations li {
							counter-increment: reg-counter;
							position: relative;
							padding: 1.1em 1.5em 1.1em 4em;
							background: #fff;
							border-radius: 12px;
							border: 1px solid #e9ecef;
							margin-bottom: 0.65em;
							box-shadow: 0 2px 8px rgba(0,0,0,0.04);
							line-height: 1.65;
							color: #555;
							transition: border-color 0.2s ease, box-shadow 0.2s ease;
						}

						.regulations li:hover {
							border-color: #b8e0d2;
							box-shadow: 0 4px 16px rgba(74,202,168,0.1);
						}

						.regulations li::before {
							content: counter(reg-counter);
							position: absolute;
							left: 1em;
							top: 50%;
							transform: translateY(-50%);
							width: 28px;
							height: 28px;
							background: linear-gradient(135deg, #4acaa8, #3ab898);
							color: #fff;
							border-radius: 50%;
							display: flex;
							align-items: center;
							justify-content: center;
							font-size: 0.78em;
							font-weight: 700;
						}

						.regulations li:last-child {
							margin-bottom: 0;
							border-color: #f5c6a0;
							background: linear-gradient(135deg, #fff9f5, #fff);
						}

						.regulations li:last-child::before {
							background: linear-gradient(135deg, #e8833a, #d06a10);
						}

/* ── Block 12 ── */
/* Progress Bar */
				.progress-container {
					position: fixed;
					top: 0;
					left: 0;
					width: 100%;
					height: 4px;
					background: transparent;
					z-index: 1000;
				}

				.progress-bar {
					height: 4px;
					background: #4acaa8;
					width: 0%;
					transition: width 0.2s ease;
				}

				/* Scroll to Top Button */
				.scroll-to-top {
					position: fixed;
					bottom: 20px;
					right: 20px;
					background: #4acaa8;
					color: white;
					width: 40px;
					height: 40px;
					border-radius: 50%;
					border: none;
					cursor: pointer;
					display: none;
					align-items: center;
					justify-content: center;
					transition: all 0.3s ease;
					z-index: 1000;
					box-shadow: 0 2px 10px rgba(0,0,0,0.2);
				}

				.scroll-to-top:hover {
					background: #3ab898;
					transform: translateY(-2px);
				}

				/* Enhanced Contact Section */
				.contact-info {
					display: grid;
					grid-template-columns: repeat(2, 1fr);
					gap: 2em;
					margin-top: 2em;
					margin-bottom: 3em;
					text-align: left;
					max-width: 600px;
					margin-left: auto;
					margin-right: auto;
				}

				.contact-card {
					background: #fff;
					padding: 1.5em;
					border-radius: 8px;
					box-shadow: 0 2px 10px rgba(0,0,0,0.1);
					display: flex;
					flex-direction: column;
					align-items: flex-start;
				}

				.contact-card i {
					color: #4acaa8;
					font-size: 1.5em;
					margin-bottom: 0.5em;
				}

				.contact-card h4 {
					margin: 0.5em 0;
					color: #4acaa8;
				}

				.contact-card p {
					margin: 0;
					line-height: 1.4;
				}

				/* Animation Classes */
				.fade-in {
					opacity: 0;
					transform: translateY(24px);
					transition: opacity 0.65s ease, transform 0.65s ease;
				}

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

/* ── Block 13 ── */
/* ─── Global section polish ──────────────────────────────── */

		/* Alternating section backgrounds */
		#o-nas       { background: #ffffff; }
		#oferta      { background: #f7fdfb; }
		#wyposazenie { background: #ffffff; }
		#zdjecia-wnetrz { background: #f7fdfb; }
		#galeria     { background: #ffffff; }
		#lokalizacja { background: #f7fdfb; }
		#faq         { background: #ffffff; }
		#kontakt     { background: linear-gradient(160deg, #f0faf7 0%, #f7fdfb 100%); }
		#regulamin   { background: #f8f9fa; }

		/* Section h2 teal accent underline */
		.inner > h2 {
			color: #2c3e50;
			margin-bottom: 0.4em;
		}
		.inner > h2::after {
			content: '';
			display: block;
			width: 50px;
			height: 3px;
			background: linear-gradient(90deg, #4acaa8, #3ab898);
			border-radius: 3px;
			margin: 0.5em auto 0;
		}

		/* Subtitle paragraph just after section h2 */
		.inner > h2 + p {
			color: #999;
			font-size: 1.05em;
			margin-top: 0;
		}

		/* About section image – bigger radius & shadow */
		.about-image {
			border-radius: 16px !important;
			box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
		}

		/* Contact cards – accent top border + hover lift */
		.contact-card {
			border-top: 3px solid #4acaa8 !important;
			transition: transform 0.3s ease, box-shadow 0.3s ease !important;
		}
		.contact-card:hover {
			transform: translateY(-6px) !important;
			box-shadow: 0 10px 28px rgba(74,202,168,0.2) !important;
		}
		.contact-card i {
			width: 52px;
			height: 52px;
			background: linear-gradient(135deg, #4acaa8, #3ab898) !important;
			border-radius: 50%;
			display: flex !important;
			align-items: center;
			justify-content: center;
			color: #fff !important;
			font-size: 1.2em !important;
			margin-bottom: 0.8em;
		}
		.contact-card h4 { color: #2c3e50 !important; font-size: 1.05em; margin-bottom: 0.3em; }
		.contact-card p  { color: #555; font-size: 1em; }

		/* Transfer blocks – match offer-card style */
		.transfer-block {
			transition: transform 0.3s ease, box-shadow 0.3s ease !important;
		}
		.transfer-block:hover {
			transform: translateY(-4px) !important;
			box-shadow: 0 8px 24px rgba(74,202,168,0.15) !important;
		}

		/* Scroll-to-top button – slightly larger */
		.scroll-to-top {
			width: 46px !important;
			height: 46px !important;
			box-shadow: 0 4px 14px rgba(74,202,168,0.4) !important;
			font-size: 1em;
		}

		/* Progress bar on top of nav */
		.progress-container { z-index: 1001 !important; }

		/* ─── Footer ─────────────────────────────────────────────── */
		.site-footer {
			background: #1a2634;
			color: #94a3b0;
			padding: 4em 2em 0;
		}

		.footer-grid {
			display: grid;
			grid-template-columns: 1.4fr 1fr 1.4fr;
			gap: 3em;
			max-width: 1100px;
			margin: 0 auto;
			padding-bottom: 3em;
			border-bottom: 1px solid rgba(255,255,255,0.08);
		}

		.footer-logo {
			font-size: 1.6em;
			font-weight: 700;
			color: #fff;
			margin-bottom: 0.6em;
			letter-spacing: -0.01em;
		}

		.footer-brand p {
			color: #94a3b0;
			line-height: 1.7;
			font-size: 0.95em;
		}

		.footer-col h4 {
			color: #fff;
			font-size: 0.8em;
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 0.1em;
			margin-bottom: 1.2em;
		}

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

		.footer-col ul li {
			margin-bottom: 0.6em;
		}

		.footer-col ul a {
			color: #94a3b0;
			text-decoration: none;
			font-size: 0.95em;
			transition: color 0.2s ease;
		}

		.footer-col ul a:hover { color: #4acaa8; }

		.footer-contact-list li {
			display: flex;
			align-items: flex-start;
			gap: 0.7em;
			margin-bottom: 0.8em;
			font-size: 0.95em;
		}

		.footer-contact-list i {
			color: #4acaa8;
			margin-top: 0.15em;
			flex-shrink: 0;
			width: 14px;
			text-align: center;
		}

		.footer-contact-list a,
		.footer-contact-list span {
			color: #94a3b0;
			text-decoration: none;
			word-break: break-word;
			transition: color 0.2s ease;
		}

		.footer-contact-list a:hover { color: #4acaa8; }

		.footer-bottom {
			max-width: 1100px;
			margin: 0 auto;
			padding: 1.5em 0;
			text-align: center;
			font-size: 0.85em;
			color: #5a6a78;
		}

		@media screen and (max-width: 860px) {
			.footer-grid {
				grid-template-columns: 1fr 1fr;
			}
			.footer-brand { grid-column: 1 / -1; }
		}

		@media screen and (max-width: 560px) {
			.footer-grid {
				grid-template-columns: 1fr;
				gap: 2em;
			}
			.footer-brand { grid-column: auto; }
		}

/* ═══════════════════════════════════════════════════════════════════════════
   DESIGN SYSTEM UNIFICATION
   Goal: match the hero visual quality across every section
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design tokens ──────────────────────────────────────────────────────── */
:root {
	--teal:          #4acaa8;
	--teal-dark:     #3ab898;
	--teal-glow:     rgba(74, 202, 168, 0.35);
	--dark:          #2c3e50;
	--muted:         #6b7a8a;
	--radius-card:   16px;
	--radius-pill:   100px;
	--shadow-card:   0 4px 24px rgba(0,0,0,0.08);
	--shadow-hover:  0 16px 40px rgba(74,202,168,0.22);
	--transition:    0.3s ease;
}


/* ── Section header typography – hero-grade ─────────────────────────────── */
.inner > h2 {
	font-size: clamp(1.9rem, 4vw, 2.6rem) !important;
	font-weight: 700 !important;
	letter-spacing: -0.025em !important;
	line-height: 1.15 !important;
	color: var(--dark) !important;
	margin-bottom: 0.35em !important;
}

/* Subtitle paragraph right after section h2 */
.inner > h2 + p {
	font-size: clamp(1rem, 2vw, 1.12rem) !important;
	color: var(--muted) !important;
	line-height: 1.75 !important;
	max-width: 640px;
	margin: 0 auto 2.5em !important;
}

/* ── Unified primary CTA button – pill shaped ───────────────────────────── */
.button.zarezerwuj {
	border-radius: var(--radius-pill) !important;
	padding: 1em 2.6em !important;
	font-size: 1.05em !important;
	letter-spacing: 0.01em !important;
	background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%) !important;
	box-shadow: 0 4px 18px var(--teal-glow) !important;
}

.button.zarezerwuj:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 10px 32px rgba(74,202,168,0.45) !important;
}

/* ── Map / secondary action buttons – pill outline ──────────────────────── */
.location-buttons .button.small {
	border-radius: var(--radius-pill) !important;
}

/* ── Card shadow system – unified ───────────────────────────────────────── */
.offer-card,
.equipment-card,
.interior-item,
.gallery-item,
.feature-card,
.faq-item,
.transfer-block,
.contact-card {
	box-shadow: var(--shadow-card) !important;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition) !important;
}

.offer-card:hover,
.equipment-card:hover,
.interior-item:hover,
.gallery-item:hover,
.feature-card:hover {
	transform: translateY(-8px) !important;
	box-shadow: var(--shadow-hover) !important;
}

/* ── Offer card ─────────────────────────────────────────────────────────── */
.offer-image { height: 300px !important; }

.offer-content h3 {
	font-size: clamp(1.4rem, 2.5vw, 1.9rem) !important;
	letter-spacing: -0.02em !important;
}

/* ── Feature cards – subtle gradient bg ─────────────────────────────────── */
.feature-card {
	background: linear-gradient(160deg, #ffffff 60%, #f5fcfa 100%) !important;
}

/* ── Section inner padding – consistent breathing room ─────────────────── */
.wrapper.style1 > .inner {
	padding-top: 5em !important;
	padding-bottom: 5em !important;
}

/* ── Section backgrounds – gradient depth instead of flat ──────────────── */
#o-nas          { background: #ffffff; }
#oferta         { background: linear-gradient(180deg, #f5fcfa 0%, #ffffff 100%); }
#wyposazenie    { background: #ffffff; }
#zdjecia-wnetrz { background: linear-gradient(180deg, #f5fcfa 0%, #ffffff 100%); }
#galeria        { background: #ffffff; }
#lokalizacja    { background: linear-gradient(180deg, #f5fcfa 0%, #ffffff 100%); }
#faq            { background: #ffffff; }
#kontakt        { background: linear-gradient(160deg, #edf8f4 0%, #f7fdfb 50%, #ffffff 100%) !important; }
#regulamin      { background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); }

/* ── Teal underline on section h2 – thicker ─────────────────────────────── */
.inner > h2::after {
	width: 60px !important;
	height: 4px !important;
	border-radius: 4px !important;
	margin-top: 0.6em !important;
}

/* ── About section – hero-quality image ─────────────────────────────────── */
.about-image {
	border-radius: 20px !important;
	box-shadow: 0 16px 48px rgba(0,0,0,0.14) !important;
}

/* ── Contact cards – centred with larger icon circle ───────────────────── */
.contact-card {
	align-items: center !important;
	text-align: center !important;
	padding: 2.2em 1.5em !important;
	border-radius: var(--radius-card) !important;
}

.contact-card i {
	width: 60px !important;
	height: 60px !important;
	font-size: 1.3em !important;
}

/* ── FAQ question text ──────────────────────────────────────────────────── */
.faq-question h3 {
	font-size: 1.1em !important;
	line-height: 1.45 !important;
}

/* ── Regulations – warning item hover ───────────────────────────────────── */
.regulations li:last-child:hover {
	border-color: #e8833a !important;
	box-shadow: 0 4px 16px rgba(232,131,58,0.15) !important;
}

/* ── Scroll-to-top – slightly larger ────────────────────────────────────── */
.scroll-to-top {
	width: 48px !important;
	height: 48px !important;
	font-size: 1.05em !important;
	box-shadow: 0 4px 18px var(--teal-glow) !important;
}

/* ── Skip-to-content link (accessibility) ──────────────────────────────── */
.skip-link {
	position: absolute;
	top: -100%;
	left: 1rem;
	background: var(--teal, #4acaa8);
	color: #fff;
	padding: 0.6em 1.4em;
	border-radius: 0 0 8px 8px;
	font-weight: 600;
	font-size: 0.95em;
	text-decoration: none;
	z-index: 9999;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 0;
	outline: 3px solid #fff;
	outline-offset: 2px;
}
