:root {
	--accordion-border: rgba(255,255,255,0.14);
	--accordion-bg: rgba(255,255,255,0.06);
	--accordion-bg-hover: rgba(255,255,255,0.10);
	--accordion-shadow: 0 10px 30px rgba(0,0,0,0.18);
	--accordion-radius: 14px;
	--accordion-speed: 0.38s;
	--accordion-ease: cubic-bezier(0.22, 1, 0.36, 1);

	--sheet-bg: rgba(9, 24, 55, 0.96);
	--sheet-border: rgba(255,255,255,0.12);
	--sheet-shadow: 0 -18px 45px rgba(0,0,0,0.30);

	--bottom-bar-height: 92px;

	--bar-bg: rgba(7, 20, 47, 0.95);
	--bar-border: rgba(255,255,255,0.10);
	--bar-shadow: 0 -6px 24px rgba(0,0,0,0.25);

	--button-bg: rgba(255,255,255,0.10);
	--button-bg-hover: rgba(255,255,255,0.16);
	--button-border: rgba(255,255,255,0.14);
	--button-text: #ffffff;

	--consult-bg: #ffffff;
	--consult-text: #0d2e68;

	--handle-color: rgba(255,255,255,0.45);
	--handle-color-hover: rgba(255,255,255,0.72);
}

/* =========================
   ACCORDION
========================= */

.accordion-group {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding-bottom:60px;
}

.accordion-item {
	cursor:pointer;
	background: transparent;
	margin: 0;
	padding: 0;
	position: relative;
}

.accordion-item::after {
	content: "";
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 0;
	height: 1px;
	background: rgba(255,255,255,0.25);
}

.accordion-item:last-child::after {
	display: none;
}

.accordion-item:hover {
    background-color: rgba(255,255,255,0.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.accordion-item.active {
    background-color: rgba(255,255,255,0.10);
    transform: translateY(0);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.25);
}

/* Header row only */
.accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 26px 28px;
	min-height:88px;
	border: 0;
	border-radius: 0px;
	background: rgba(255,255,255,0.12);
	color: #ffffff;
	text-align: left;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition:
		background 0.30s ease,
		border-radius 0.30s ease;
	scroll-margin-top: 120px;
}

.accordion-trigger:hover,
.accordion-trigger:focus-visible {
	background: rgba(255,255,255,0.16);
	outline: none;
}


/* Trigger label only */
.accordion-title {
	display: block;
	margin: 0;
	color: #ffffff;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0em;
	text-transform: none;
}

/* Arrow circle */
.accordion-icon-wrap {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-icon {
	position: relative;
	width: 14px;
	height: 14px;
	display: inline-block;
	transform: rotate(0deg);
	transition: transform 0.35s ease;
}

.accordion-icon::before,
.accordion-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 9px;
	height: 2px;
	background: #ffffff;
	border-radius: 2px;
	transform-origin: center center;
}

.accordion-icon::before {
	left: 0;
	transform: translateY(-50%) rotate(45deg);
}

.accordion-icon::after {
	right: 0;
	transform: translateY(-50%) rotate(-45deg);
}

.accordion-item.is-open .accordion-icon {
	transform: rotate(180deg);
}



/* Panel collapse */
.accordion-panel {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition:
		max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.25s ease;
}

.accordion-item.is-open .accordion-panel {
	opacity: 1;
}

/* Neutral wrapper so your real section can keep its own padding */
.accordion-panel-inner {
	padding: 0;
	margin: 0;
}

/* Your real section should visually attach to the header */
.accordion-panel .section {
	margin-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

/* These overrides prevent accidental extra space from the accordion system */
.accordion-panel .section:first-child {
	margin-top: 0;
}

.accordion-panel .section:last-child {
	margin-bottom: 0;
}

/* Tighten section header spacing when inside accordion if needed */
.accordion-panel .section-header {
	margin: 0 0 1.5em;
}

/* Optional: if centered heading feels wrong inside accordion content */
.accordion-panel .section-header {
	text-align: center;
}

/* Mobile */
@media (max-width: 767px) {
	.accordion-trigger {
		padding: 18px 18px;
		min-height:68px;
	}

	.accordion-title {
		font-size: 22px;
	}

	.accordion-icon-wrap {
		width: 40px;
		height: 40px;
	}
}


/* =========================
   PERSISTENT BOTTOM BAR
========================= */

.page-bottom-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1200;

	/* NEW LOOK */
background: linear-gradient(
	180deg,
	rgba(52, 64, 86, 0.95),
	rgba(24, 34, 54, 0.98)
);

	border-top: 1px solid rgba(255,255,255,0.08);

	/* 3D depth */
	box-shadow:
		0 -8px 24px rgba(0,0,0,0.45),
		inset 0 1px 0 rgba(255,255,255,0.06);

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);

	overflow: visible;
}

.page-bottom-bar::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;

	background: linear-gradient(
		to right,
		rgba(255,255,255,0.05),
		rgba(255,255,255,0.25),
		rgba(255,255,255,0.05)
	);
}

.page-bottom-bar::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 40px;
	pointer-events: none;

	background: radial-gradient(
		ellipse at center,
		rgba(255,255,255,0.04),
		transparent 70%
	);
}

.page-bottom-bar-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 12px;
}

.bottom-bar-col-left {
	justify-self: center;
	order: 2;
}

.bottom-bar-col-middle {
	justify-self: start;
	order: 1;
}

.bottom-bar-col-right {
	justify-self: end;
	order: 3;
}

.bottom-bar-price {
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.bottom-bar-price-mobile {
	display: none;
}


/* Buttons Begin Here /////// */

.bottom-bar-button,
.bottom-bar-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border-radius: 12px;

	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none; /* ← Title Case */

	text-decoration: none;
	cursor: pointer;

	transition:
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		transform 0.15s ease,
		box-shadow 0.25s ease;
}

/* SECTIONS (secondary white) */
.bottom-bar-button {
	background: #ffffff;
	color: #1b2a44;

	border: 1px solid rgba(0,0,0,0.08);

	box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.bottom-bar-button:hover,
.bottom-bar-button:focus,
.bottom-bar-button:focus-visible,
.bottom-bar-button:active {
	background: #ffffff;
	color: #1b2a44;
	box-shadow: 0 5px 14px rgba(0,0,0,0.18);
	outline: none;
}

/* CTA (primary white) */
.bottom-bar-cta {
	background: #ffffff;
	color: #1b2a44;

	border: none;

	box-shadow:
		0 8px 22px rgba(0,0,0,0.22),
		inset 0 1px 0 rgba(255,255,255,0.6);
}

.bottom-bar-cta:hover,
.bottom-bar-cta:focus-visible {
	transform: translateY(-1px);
	outline: none;
}

.bottom-bar-cta:active {
	transform: translateY(0);
}

/* END BUTTONS /////// */

.bottom-bar-price {
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

/* Handle above the bar */
.bottom-sheet-handle-button {
	position: absolute;
	left: 50%;
	top: -20px;
	transform: translateX(-50%);
	width: 88px;
	height: 24px;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
}

.bottom-sheet-handle-button::before {
	content: "";
	display: block;
	width: 54px;
	height: 6px;
	margin: 9px auto 0 auto;
	border-radius: 999px;
	background: var(--handle-color);
	transition: background 0.25s ease, transform 0.25s ease;
}

.bottom-sheet-handle-button:hover::before,
.bottom-sheet-handle-button:focus-visible::before {
	background: var(--handle-color-hover);
	transform: scaleX(1.08);
	outline: none;
}

/* =========================
   BOTTOM SHEET / SECTION LIST
========================= */

.page-bottom-sheet {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	pointer-events: none;
}

.page-bottom-sheet-panel {
	max-width: 1200px;
	margin: 0 auto;
	background: var(--sheet-bg);
	border: 1px solid var(--sheet-border);
	border-bottom: 0;
	border-radius: 22px 22px 0 0;
	box-shadow: var(--sheet-shadow);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transform: translateY(calc(100% - 22px));
	transition: transform 0.42s var(--accordion-ease);
	pointer-events: auto;
	touch-action: pan-y;
}

.page-bottom-sheet.is-open .page-bottom-sheet-panel {
	transform: translateY(0);
}

.page-bottom-sheet-header {
	padding: 16px 20px 10px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.page-bottom-sheet-handle {
	width: 54px;
	height: 6px;
	border-radius: 999px;
	background: var(--handle-color);
}

.page-bottom-sheet-body {
	padding: 8px 20px calc(26px + var(--bottom-bar-height) + env(safe-area-inset-bottom)) 20px;
	max-height: min(78vh, 900px);
	overflow: auto;
}

.page-bottom-sheet-title {
	margin: 0 0 14px 0;
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.page-bottom-sheet-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

/* .page-bottom-sheet-links a {
	display: block;
	padding: 14px 16px;
	border-radius: 12px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	color: #ffffff;
	text-decoration: none;
	font-size:35px;
	font-weight: 700;
	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		transform 0.20s ease;
} */

#pageBottomSheet .page-bottom-sheet-links > li > a {
	display: block;
	padding: 14px 16px;
	border-radius: 12px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	color: #ffffff !important;
	text-decoration: none;
	font: 700 22px/1.25 Oxygen, Arial, sans-serif !important;
	letter-spacing: 0;
	text-transform: none;
	-webkit-text-size-adjust: 100%;
}


.page-bottom-sheet-links a:hover,
.page-bottom-sheet-links a:focus-visible {
	background: rgba(255,255,255,0.10);
	border-color: rgba(255,255,255,0.14);
	transform: translateY(-1px);
	outline: none;
}

/* Backdrop */
.page-bottom-sheet-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.38);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.30s ease, visibility 0.30s ease;
	z-index: 998;
}

.page-bottom-sheet.is-open + .page-bottom-sheet-backdrop {
	opacity: 1;
	visibility: visible;
}

.bottom-bar-price-line1,
.bottom-bar-price-line2 {
	display: block;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767px) {

	.page-bottom-bar-inner {
		grid-template-columns: 1fr 1fr;
		align-items: center;
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
		column-gap: 16px;
	}

	.bottom-bar-col-left {
		order: 1;
		justify-self: stretch;
	}

	.bottom-bar-col-middle {
		display: none;
	}

	.bottom-bar-col-right {
		order: 2;
		justify-self: end;
	}

	.bottom-bar-price-desktop {
		display: none;
	}

	.bottom-bar-price-mobile {
		display: none;
		color: #ffffff;
		font-weight: 800;
		line-height: 1.05;
		white-space: normal;
		text-align: center;
	}

	.bottom-bar-price-line1,
	.bottom-bar-price-line2 {
		display: block;
	}

	.bottom-bar-price-line1 {
		font-size: 18px;
	}

	.bottom-bar-price-line2 {
		font-size: 13px;
		font-weight: 700;
		opacity: 0.92;
		margin-top: 2px;
	}

	.bottom-bar-col-left,
	.bottom-bar-col-right {
		padding: 0;
		box-sizing: border-box;
	}

	.bottom-bar-cta,
	.bottom-bar-consult {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: auto;
		box-sizing: border-box;
	}
}




@media (min-width: 768px) {
	.page-bottom-sheet-body {
		max-height: 75vh;
		max-height: 75dvh;
	}
}

/* Optional body helper class when sheet is open */
body.bottom-sheet-open {
	overflow: hidden;
}