/* ============================================
   FAQ HERO SECTION
   ============================================ */
.faq-hero {
	background: linear-gradient(135deg, #fafaf8 0%, #e8f5f0 50%, #f5f5f0 100%);
	color: white;
	padding: 80px 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
	padding-top:100px;
}

.faq-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.faq-hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.faq-hero h1 {
	font-size: clamp(32px, 8vw, 56px);
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	color:#054109;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  	font-weight: 700;
  	font-size: clamp(32px, 8vw, 64px);
}

.faq-hero-subtitle {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 50px;
	opacity: 0.95;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	color:#707070;
}

/* ============================================
   SEARCH SECTION
   ============================================ */
.faq-search-wrapper {
	position: relative;
	max-width: 500px;
	margin: 0 auto;
}

.faq-search {
	display: flex;
	align-items: center;
	background: white;
	border-radius: 8px;
	padding: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

.faq-search-input {
	flex: 1;
	padding: 15px 20px;
	border: none;
	font-size: 16px;
	outline: none;
	color: #333;
}

.faq-search-input::placeholder {
	color: #999;
}

.faq-search-btn {
	background: none;
	border: none;
	padding: 15px 20px;
	cursor: pointer;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease;
}

.faq-search-btn:hover {
	color: #1a472a;
}

.faq-search-suggestions {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: 8px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	z-index: 100;
	max-height: 300px;
	overflow-y: auto;
}

.suggestions-list {
	padding: 0;
}

.suggestion-item {
	padding: 12px 20px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
	color: #333;
	font-size: 14px;
	transition: background-color 0.2s ease;
}

.suggestion-item:last-child {
	border-bottom: none;
}

.suggestion-item:hover {
	background-color: #f5f5f5;
	color: #1a472a;
}

/* ============================================
   FILTERS SECTION
   ============================================ */
.faq-filters-section {
	background: #f8f8f8;
	padding: 40px 20px;
	border-bottom: 1px solid #e0e0e0;
}

.faq-filter-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 1400px;
	margin: 0 auto;
}

.faq-filter-btn {
	background: white;
	border: 2px solid #ddd;
	padding: 10px 16px;
	border-radius: 25px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	transition: all 0.3s ease;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 8px;
}

.faq-filter-btn:hover {
	border-color: #1a472a;
	color: #1a472a;
	background: #f5f5f5;
}

.faq-filter-btn.active {
	background: #1a472a;
	color: white;
	border-color: #1a472a;
}

.filter-count {
	opacity: 0.7;
	font-size: 12px;
}

.faq-filter-btn.active .filter-count {
	opacity: 0.9;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
	padding: 60px 20px;
	background: white;
}

.faq-accordion {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	gap: 16px;
	--faq-card-pad-x: 24px;
	--faq-card-pad-y: 22px;
	--faq-rail-width: 68px;
	--faq-index-width: 52px;
	--faq-index-height: 38px;
	--faq-card-gap: 18px;
	counter-reset: faq-item;
}

.faq-item {
	counter-increment: faq-item;
	position: relative;
	display: grid;
	grid-template-columns: var(--faq-rail-width) minmax(0, 1fr);
	column-gap: var(--faq-card-gap);
	align-items: start;
	padding: var(--faq-card-pad-y) var(--faq-card-pad-x);
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(0, 71, 49, 0.1);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(15, 24, 20, 0.06);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	opacity: 1;
	transform: none;
	will-change: auto;
	transition:
		box-shadow 0.35s ease,
		border-color 0.3s ease,
		transform 0.32s ease;
	animation: fadeIn 0.3s ease-in;
}

.faq-item::before {
	content: counter(faq-item, decimal-leading-zero);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	grid-column: 1;
	grid-row: 1;
	width: var(--faq-index-width);
	height: var(--faq-index-height);
	justify-self: start;
	align-self: start;
	border-radius: 999px;
	border: 1px solid rgba(0, 71, 49, 0.14);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 243, 0.94));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
	color: #6f8f86;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1;
}

.faq-item::after {
	content: "";
	grid-column: 1;
	grid-row: 1 / span 2;
	justify-self: center;
	align-self: stretch;
	width: 1px;
	margin-top: calc(var(--faq-index-height) + 10px);
	margin-bottom: 2px;
	background: linear-gradient(
		180deg,
		rgba(158, 194, 166, 0.72) 0%,
		rgba(0, 71, 49, 0.14) 56%,
		rgba(158, 194, 166, 0) 100%
	);
	opacity: 0.72;
	pointer-events: none;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-item:hover {
	border-color: rgba(158, 194, 166, 0.55);
	box-shadow: 0 14px 40px rgba(0, 71, 49, 0.09);
	transform: translateY(-4px);
}

.faq-item.is-open {
	border-color: rgba(0, 71, 49, 0.28);
	box-shadow: 0 16px 44px rgba(0, 71, 49, 0.11);
}

.faq-item.is-open::before {
	color: #004731;
	border-color: rgba(0, 71, 49, 0.18);
	background: linear-gradient(135deg, rgba(235, 245, 239, 0.98), rgba(223, 239, 230, 0.96));
}

.faq-item.is-open::after {
	background: linear-gradient(
		180deg,
		rgba(158, 194, 166, 0.82) 0%,
		rgba(0, 71, 49, 0.2) 62%,
		rgba(158, 194, 166, 0) 100%
	);
}

.faq-question {
	grid-column: 2;
	width: 100%;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	font-size: 16px;
	font-weight: 600;
	color: #004731;
	transition: background 0.25s ease, color 0.25s ease;
	text-align: left;
	font-family: "Inter", system-ui, sans-serif;
	letter-spacing: 0.01em;
	line-height: 1.35;
	user-select: none;
	position: relative;
	z-index: 1;
	min-height: var(--faq-index-height);
}

.faq-question:focus {
	outline: none;
}

.faq-question:focus-visible {
	outline: 2px solid rgba(0, 71, 49, 0.4);
	outline-offset: 2px;
}

.faq-question:hover {
	background: transparent;
	color: #003322;
}

.faq-item.is-open .faq-question {
	background: transparent;
	color: #004731;
}

.faq-question-text {
	min-width: 0;
	line-height: 1.45;
	padding-top: 3px;
}

.faq-toggle {
	position: relative;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #004731;
	line-height: 1;
	border: 1px solid rgba(0, 71, 49, 0.15);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.6);
	transition: border-color 0.28s ease, color 0.25s ease, box-shadow 0.28s ease;
	margin-top: 3px;
}

.faq-toggle svg {
	display: none;
}

.faq-toggle::before,
.faq-toggle::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 2px;
	margin: 0;
	background: currentColor;
	border-radius: 1px;
	transform-origin: center;
	transition:
		transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1),
		width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.faq-toggle::before {
	transform: translate(-50%, -50%) rotate(0deg);
}

.faq-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle {
	color: #004731;
	border-color: rgba(0, 71, 49, 0.28);
	box-shadow: 0 0 0 1px rgba(158, 194, 166, 0.35);
}

.faq-item.is-open .faq-toggle::before,
.faq-item.is-open .faq-toggle::after {
	transform: translate(-50%, -50%) rotate(0deg);
	width: 14px;
}

.faq-accordion .faq-answer {
	grid-column: 2;
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
		padding 0.35s ease,
		border-top-color 0.3s ease;
	background: transparent;
	color: #4d5652;
	font-size: 15px;
	line-height: 1.75;
	padding: 0 !important;
	border-top: 1px solid transparent;
	font-weight: 400;
	font-family: "Inter", system-ui, sans-serif;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}

.faq-item.is-open {
	overflow: visible;
}

.faq-accordion .faq-item.is-open .faq-answer {
	padding: 18px 0 16px !important;
	border-top-color: rgba(0, 71, 49, 0.14);
	overflow: hidden;
}

.faq-answer p {
	margin: 0;
	color: inherit;
}

.faq-answer p + p {
	margin-top: 12px;
}

.faq-answer h2,
.faq-answer h3,
.faq-answer h4,
.faq-answer h5 {
	margin: 1em 0 0.35em;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	font-weight: 600;
}

.faq-answer > :first-child {
	margin-top: 0;
}

.faq-answer > :last-child {
	margin-bottom: 0;
}

/* ============================================
   NO RESULTS
   ============================================ */
.faq-no-results {
	display: none;
	text-align: center;
	padding: 60px 20px;
}

.faq-no-results-content {
	max-width: 500px;
	margin: 0 auto;
}

.no-results-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
	border-radius: 50%;
	color: #999;
}

.faq-no-results h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

.faq-no-results p {
	color: #777;
	margin-bottom: 30px;
	font-size: 16px;
}

.faq-reset-btn {
	background: #1a472a;
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.faq-reset-btn:hover {
	background: #2d6b42;
	transform: translateY(-2px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.faq-contact-modern {
	background: linear-gradient(135deg, #1a472a 0%, #2d6b42 100%);
	padding: 80px 20px;
	color: white;
}

.faq-contact-modern__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

.faq-contact-modern__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	opacity: 0.8;
	margin-bottom: 15px;
}

.faq-contact-modern__left h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 30px;
}

.faq-contact-modern__actions {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
}

.faq-contact-modern__btn {
	padding: 14px 28px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	display: inline-block;
	cursor: pointer;
}

.faq-contact-modern__btn--primary {
	background: white;
	color: #1a472a;
}

.faq-contact-modern__btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-contact-modern__btn--ghost {
	background: transparent;
	color: white;
	border-color: white;
}

.faq-contact-modern__btn--ghost:hover {
	background: white;
	color: #1a472a;
}

.faq-contact-modern__availability {
	font-size: 14px;
	opacity: 0.9;
	margin: 0;
}

.faq-contact-modern__availability.is-open {
	color: #90EE90;
	font-weight: 600;
}

.faq-contact-modern__right h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.faq-contact-modern__right ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.faq-contact-modern__right li {
	padding: 10px 0;
	padding-left: 30px;
	position: relative;
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.95;
}

.faq-contact-modern__right li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #90EE90;
	font-weight: bold;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
	.faq-hero {
		padding: 60px 20px;
		padding-top:100px;
	}

	.faq-hero h1 {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.faq-hero-subtitle {
		font-size: 16px;
		margin-bottom: 35px;
	}

	.faq-filter-wrapper {
		gap: 10px;
	}

	.faq-filter-btn {
		padding: 8px 14px;
		font-size: 13px;
	}

	.faq-accordion {
		--faq-card-pad-x: 16px;
		--faq-card-pad-y: 16px;
		--faq-rail-width: 58px;
		--faq-index-width: 44px;
		--faq-index-height: 34px;
		--faq-card-gap: 14px;
	}

	.faq-section {
		padding: 40px 20px;
	}

	.faq-question {
		font-size: 15px;
	}

	.faq-item::before {
		padding: 0 10px;
		font-size: 11px;
		letter-spacing: 0.14em;
	}

	.faq-item.is-open .faq-answer {
		padding-top: 16px;
	}

	.faq-contact-modern__grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.faq-contact-modern__left h2 {
		font-size: 24px;
	}

	.faq-contact-modern__actions {
		flex-direction: column;
	}

	.faq-contact-modern__btn {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.faq-hero {
		padding: 50px 15px;
	}

	.faq-hero h1 {
		font-size: 24px;
	}

	.faq-hero-subtitle {
		font-size: 14px;
		margin-bottom: 30px;
	}

	.faq-filter-wrapper {
		gap: 8px;
	}

	.faq-filter-btn {
		padding: 7px 12px;
		font-size: 12px;
	}

	.faq-accordion {
		--faq-card-pad-x: 14px;
		--faq-card-pad-y: 14px;
		--faq-rail-width: 50px;
		--faq-index-width: 40px;
		--faq-index-height: 30px;
		--faq-card-gap: 12px;
	}

	.faq-question {
		font-size: 14px;
	}

	.faq-item::before {
		padding: 0 9px;
		font-size: 10px;
		letter-spacing: 0.12em;
	}

	.faq-question-text {
		line-height: 1.4;
	}

	.faq-answer {
		font-size: 14px;
	}

	.faq-item.is-open .faq-answer {
		padding-top: 14px;
	}

	.faq-section {
		padding: 30px 15px;
	}

	.faq-no-results {
		padding: 40px 15px;
	}

	.faq-contact-modern {
		padding: 60px 15px;
	}

	.faq-contact-modern__left h2 {
		font-size: 20px;
	}
}

/* ============================================
   ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
	.faq-toggle,
	.faq-toggle::before,
	.faq-toggle::after,
	.faq-btn,
	.faq-item,
	.faq-question,
	.faq-answer {
		transition: none;
	}
}
/* NOWA SEKCJA KONTAKTU */
.kb-contact-modern {
	padding: 84px 0;
	background: linear-gradient(145deg, #fbf9f3 0%, #eef4ef 100%);
}

.kb-contact-modern__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 24px;
	background: #ffffff;
	border: 1px solid rgba(0, 71, 49, 0.14);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 18px 44px rgba(10, 40, 20, 0.08);
}

.kb-contact-modern__eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	color: #004731;
}

.kb-contact-modern h2 {
	margin: 0 0 20px;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.15;
	color: #004731;
}

.kb-contact-modern__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
}

.kb-contact-modern__btn {
	min-height: 48px;
	padding: 0 18px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s ease;
}

.kb-contact-modern__btn--primary {
	background: #004731;
	color: #ffffff;
	border: 1px solid #004731;
}

.kb-contact-modern__btn--primary:hover {
	background: #003826;
	border-color: #003826;
}

.kb-contact-modern__btn--ghost {
	background: #ffffff;
	color: #004731;
	border: 1px solid #004731;
}

.kb-contact-modern__btn--ghost:hover {
	background: #edf6f0;
}

.kb-contact-modern__availability {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: #1f2a24;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.kb-contact-modern__availability::before {
	content: '';
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #a9b2ac;
	flex: 0 0 9px;
}

.kb-contact-modern__availability.is-open::before {
	background: #004731;
	animation: kb-availability-pulse 1.8s ease-out infinite;
}

.kb-contact-modern__right {
	background: #f6fbf7;
	border: 1px solid rgba(0, 71, 49, 0.12);
	border-radius: 14px;
	padding: 18px;
}

.kb-contact-modern__right h3 {
	margin: 0 0 10px;
	font-size: 18px;
	color: #004731;
}

.kb-contact-modern__right ul {
	margin: 0;
	padding-left: 18px;
	color: #1f2a24;
	line-height: 1.65;
	font-size: 14px;
}
.kb-contact-modern__availability::before {
	content: '';
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #a9b2ac;
	flex: 0 0 9px;

	display: block;
	position: relative;
}
@keyframes kb-availability-pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(0, 71, 49, 0.5);
	}

	70% {
		transform: scale(1.15);
		box-shadow: 0 0 0 10px rgba(0, 71, 49, 0);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(0, 71, 49, 0);
	}
}
.floor-compare{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
    gap:24px;
    margin-top:30px;
}

.floor-box{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:16px;
    padding:28px;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

.floor-box h3{
    font-size:24px;
    margin-bottom:24px;
    color:#222;
}

.compare-section{
    margin-bottom:24px;
}

.compare-section h4{
    font-size:18px;
    margin-bottom:14px;
}

.advantages h4{
    color:#1f8a3b;
}

.disadvantages h4{
    color:#c0392b;
}

.compare-section ul{
    padding-left:20px;
    margin:0;
}

.compare-section li{
    margin-bottom:12px;
    line-height:1.6;
    color:#444;
}
.floor-more-info{
    margin-top:30px;
    padding:24px;
    background:#f7f7f7;
    border-radius:14px;
    text-align:center;
    border:1px solid #e9e9e9;
}

.floor-more-info p{
    margin-bottom:16px;
    color:#444;
    line-height:1.6;
}

.floor-link{
    display:inline-block;
    padding:12px 22px;
    background:#222;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:0.3s ease;
}

.floor-link:hover{
    background:#000;
    transform:translateY(-2px);
}