/* Integra fusie popup – Fysio 0517 */

.integra-popup {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.integra-popup[hidden] {
	display: none !important;
}

.integra-popup.is-visible {
	display: flex !important;
}

.integra-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(44, 67, 69, 0.75);
	cursor: pointer;
}

.integra-popup__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
	padding: 40px 32px 32px;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
	color: #666;
}

.integra-popup__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	color: #2c4345;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.2s ease, color 0.2s ease;
}

.integra-popup__close:hover,
.integra-popup__close:focus {
	background: #f0f0f0;
	color: #ed1847;
	outline: none;
}

.integra-popup__title {
	margin: 0 0 16px;
	padding-right: 36px;
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	color: #2c4345;
}

.integra-popup__lead {
	margin: 0 0 24px;
	font-size: 16px;
	line-height: 1.6;
}

.integra-popup__section {
	margin-bottom: 20px;
}

.integra-popup__section h3 {
	margin: 0 0 8px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #2c4345;
}

.integra-popup__section p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

.integra-popup__address {
	margin: 0 0 20px;
	padding: 16px 20px;
	background: #f0f0f0;
	border-left: 4px solid #ed1847;
	font-size: 15px;
	line-height: 1.6;
	color: #333;
}

.integra-popup__address strong {
	color: #2c4345;
}

.integra-popup__closing {
	margin: 0 0 28px;
	font-size: 15px;
	line-height: 1.6;
}

.integra-popup__cta {
	display: inline-block;
	width: 100%;
	padding: 14px 24px;
	border: none;
	border-radius: 100px;
	background: #ed1847;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	box-sizing: border-box;
}

.integra-popup__cta:hover,
.integra-popup__cta:focus {
	background: #2c4345;
	color: #fff;
	outline: none;
}

body.integra-popup-open {
	overflow: hidden;
}

/* Mobiel: gecentreerde modal, website blijft zichtbaar */
@media (max-width: 767px) {
	.integra-popup {
		padding: 16px;
		align-items: center;
	}

	.integra-popup__overlay {
		background: rgba(44, 67, 69, 0.65);
	}

	.integra-popup__panel {
		max-width: 100%;
		max-height: calc(100vh - 32px);
		max-height: calc(100dvh - 32px);
		border-radius: 10px;
		padding: 48px 20px 24px;
	}

	.integra-popup__close {
		top: 8px;
		right: 8px;
		width: 48px;
		height: 48px;
		font-size: 36px;
		background: #f0f0f0;
	}

	.integra-popup__title {
		font-size: 20px;
		padding-right: 44px;
	}

	.integra-popup__lead,
	.integra-popup__section p,
	.integra-popup__address,
	.integra-popup__closing {
		font-size: 14px;
	}

	.integra-popup__cta {
		padding: 16px 24px;
		font-size: 15px;
	}
}
