/* -------------------------------------------------------
   Contact gate: blur wrapper + reveal button overlay
   ------------------------------------------------------- */

.bph-contact-section {
	position: relative;
}

.bph-contact-content.bph-contact-blurred {
	filter: blur(5px);
	user-select: none;
	pointer-events: none;
}

.bph-contact-reveal-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.bph-contact-trigger {
	background: #4f93ff;
	color: #fff;
	border: none;
	padding: 14px 32px;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	border-radius: 4px;
	cursor: pointer;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
	transition: background 0.2s;
}

.bph-contact-trigger:hover {
	background: #142748;
}

/* -------------------------------------------------------
   Modal overlay + card
   ------------------------------------------------------- */

#bph-contact-modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

#bph-contact-modal-overlay.bph-modal-open {
	display: flex;
}

#bph-contact-modal {
	max-width: 680px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	border: 2px solid #142748;
	border-radius: 6px;
	font-family: 'Open Sans', sans-serif;
	background: #fff;
}

#bph-contact-accept {
	flex: 1;
	background: #4f93ff;
	color: #fff;
	border: none;
	padding: 13px 24px;
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
}

#bph-contact-accept:hover {
	background: #142748;
}

#bph-contact-decline {
	flex: 1;
	background: transparent;
	color: #555;
	border: 2px solid #bbb;
	padding: 13px 24px;
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	border-radius: 4px;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
}

#bph-contact-decline:hover {
	border-color: #666;
	color: #222;
}
