/* Better Call Dani – SEO & Conversion Fixes
   Front-end styles: trust bar + sticky mobile click-to-call bar. */

/* --- Trust bar (top of page) --- */
.bcd-trustbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px 18px;
	padding: 8px 14px;
	background: #0b3a63;
	color: #fff;
	font-size: 14px;
	line-height: 1.3;
	text-align: center;
}
.bcd-trustbar__item {
	position: relative;
	white-space: nowrap;
}
.bcd-trustbar__item::before {
	content: "\2714";
	margin-right: 6px;
	opacity: 0.9;
}
.bcd-trustbar__phone {
	margin-left: 8px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.bcd-trustbar__phone:hover {
	color: #fff;
	border-bottom-color: #fff;
}

/* --- Sticky mobile click-to-call bar --- */
.bcd-callbar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	display: none; /* mobile only, enabled below */
	align-items: stretch;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.18);
	font-size: 16px;
}
.bcd-callbar a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 10px;
	text-decoration: none;
	font-weight: 700;
	flex: 1 1 50%;
	min-height: 52px;
}
.bcd-callbar__call {
	background: #0b3a63;
	color: #fff;
}
.bcd-callbar__cta {
	background: #f6a21d;
	color: #1a1a1a;
}
.bcd-callbar__icon {
	font-size: 18px;
}

/* Show the call bar on phones only; add bottom padding so it doesn't cover content. */
@media (max-width: 782px) {
	.bcd-callbar {
		display: flex;
	}
	body {
		padding-bottom: 56px;
	}
}
