/**
 * ============================================================
 * BLUE PALM PROPERTY CARE
 * Premium Footer — Module 1
 * ============================================================
 */


/* ------------------------------------------------------------
   LOCAL DESIGN TOKENS
------------------------------------------------------------ */

.bp-footer {
	--bp-navy-950: #071c2c;
	--bp-navy-900: #0a263b;
	--bp-navy-850: #0d2d46;
	--bp-blue-light: #8fc8e5;

	--bp-gold: #c9a55c;
	--bp-gold-light: #e1c681;

	--bp-white: #ffffff;
	--bp-text: #e9f0f4;
	--bp-text-muted: #b8c6cf;

	--bp-border: rgba(255, 255, 255, 0.12);

	--bp-container: 1240px;

	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	background: var(--bp-navy-950);
	color: var(--bp-text);
	font-family: inherit;
	overflow: hidden;
}


/* ------------------------------------------------------------
   GOLD ACCENT
------------------------------------------------------------ */

.bp-footer__accent {
	width: 100%;
	height: 3px;
	background:
		linear-gradient(
			90deg,
			transparent 0%,
			var(--bp-gold) 22%,
			var(--bp-gold-light) 50%,
			var(--bp-gold) 78%,
			transparent 100%
		);
}


/* ------------------------------------------------------------
   MAIN FOOTER
------------------------------------------------------------ */

.bp-footer__main {
	position: relative;
	padding: 70px 28px 58px;
	background:
		radial-gradient(
			circle at 8% 15%,
			rgba(143, 200, 229, 0.08),
			transparent 34%
		),
		linear-gradient(
			135deg,
			var(--bp-navy-900) 0%,
			var(--bp-navy-950) 72%
		);
}


/* subtle premium illumination */

.bp-footer__main::after {
	content: "";
	position: absolute;
	top: -180px;
	right: -180px;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: rgba(201, 165, 92, 0.035);
	pointer-events: none;
}


.bp-footer__container {
	position: relative;
	z-index: 1;

	display: grid;
	grid-template-columns:
		minmax(260px, 1.35fr)
		minmax(130px, 0.65fr)
		minmax(210px, 1fr)
		minmax(235px, 1fr);

	gap: 58px;

	width: 100%;
	max-width: var(--bp-container);
	margin: 0 auto;
}


/* ------------------------------------------------------------
   BRAND
------------------------------------------------------------ */

.bp-footer__brand {
	max-width: 330px;
}


.bp-footer__logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	margin: 0 0 25px;
}


.bp-footer__logo {
	display: block;
	width: auto;
	max-width: 220px;
	height: auto;
	max-height: 92px;
	object-fit: contain;
}


.bp-footer__brand-copy {
	max-width: 310px;
	margin: 0 0 20px;

	color: var(--bp-text-muted);

	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
}


.bp-footer__promise {
	position: relative;
	margin: 0;
	padding-left: 17px;

	color: var(--bp-white);

	font-size: 12px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}


.bp-footer__promise::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.32em;

	width: 2px;
	height: 1.45em;

	border-radius: 10px;
	background: var(--bp-gold);
}


/* ------------------------------------------------------------
   COLUMN HEADINGS
------------------------------------------------------------ */

.bp-footer__heading {
	position: relative;

	margin: 4px 0 25px;
	padding: 0 0 13px;

	color: var(--bp-white);

	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}


.bp-footer__heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;

	width: 30px;
	height: 2px;

	border-radius: 5px;
	background: var(--bp-gold);
}


/* ------------------------------------------------------------
   NAVIGATION LINKS
------------------------------------------------------------ */

.bp-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}


.bp-footer__links li {
	margin: 0 0 11px;
	padding: 0;
}


.bp-footer__links a {
	position: relative;
	display: inline-block;

	padding: 2px 0;

	color: var(--bp-text-muted);
	text-decoration: none;

	font-size: 14.5px;
	font-weight: 400;
	line-height: 1.55;

	transition:
		color 180ms ease,
		transform 180ms ease;
}


.bp-footer__links a::after {
	content: "";
	position: absolute;

	left: 0;
	bottom: 0;

	width: 0;
	height: 1px;

	background: var(--bp-gold);

	transition: width 180ms ease;
}


.bp-footer__links a:hover,
.bp-footer__links a:focus-visible {
	color: var(--bp-white);
	transform: translateX(3px);
}


.bp-footer__links a:hover::after,
.bp-footer__links a:focus-visible::after {
	width: 100%;
}


/* ------------------------------------------------------------
   CONTACT
------------------------------------------------------------ */

.bp-footer__contact-copy {
	max-width: 260px;
	margin: 0 0 24px;

	color: var(--bp-text-muted);

	font-size: 14.5px;
	line-height: 1.75;
}


.bp-footer__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	min-height: 48px;

	padding: 12px 20px;

	border: 1px solid var(--bp-gold);
	border-radius: 3px;

	background: var(--bp-gold);
	color: var(--bp-navy-950);

	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.045em;
	text-decoration: none;
	text-transform: uppercase;

	box-shadow:
		0 10px 28px rgba(0, 0, 0, 0.16);

	transition:
		background 180ms ease,
		color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}


.bp-footer__button svg {
	flex: 0 0 auto;
	transition: transform 180ms ease;
}


.bp-footer__button:hover,
.bp-footer__button:focus-visible {
	background: transparent;
	color: var(--bp-gold-light);

	transform: translateY(-2px);

	box-shadow:
		0 14px 32px rgba(0, 0, 0, 0.22);
}


.bp-footer__button:hover svg,
.bp-footer__button:focus-visible svg {
	transform: translateX(3px);
}


/* ------------------------------------------------------------
   KEYBOARD FOCUS
------------------------------------------------------------ */

.bp-footer a:focus-visible {
	outline: 2px solid var(--bp-gold-light);
	outline-offset: 5px;
}


/* ------------------------------------------------------------
   LOWER BAR
------------------------------------------------------------ */

.bp-footer__bottom {
	padding: 0 28px;

	border-top: 1px solid var(--bp-border);

	background: #061824;
}


.bp-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;

	width: 100%;
	max-width: var(--bp-container);

	min-height: 68px;

	margin: 0 auto;
}


.bp-footer__copyright {
	margin: 0;

	color: rgba(233, 240, 244, 0.66);

	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.015em;
}


.bp-footer__legal {
	display: flex;
	align-items: center;
	gap: 22px;
}


.bp-footer__legal a {
	color: rgba(233, 240, 244, 0.66);

	font-size: 12.5px;
	line-height: 1.5;
	text-decoration: none;

	transition: color 180ms ease;
}


.bp-footer__legal a:hover,
.bp-footer__legal a:focus-visible {
	color: var(--bp-gold-light);
}


/* ------------------------------------------------------------
   TABLET
------------------------------------------------------------ */

@media (max-width: 1024px) {

	.bp-footer__main {
		padding-top: 60px;
		padding-bottom: 52px;
	}

	.bp-footer__container {
		grid-template-columns:
			minmax(250px, 1.3fr)
			minmax(155px, 0.7fr)
			minmax(220px, 1fr);

		gap: 48px 38px;
	}

	.bp-footer__contact {
		grid-column: 2 / 4;
	}

	.bp-footer__contact-copy {
		max-width: 440px;
	}
}


/* ------------------------------------------------------------
   SMALL TABLET
------------------------------------------------------------ */

@media (max-width: 760px) {

	.bp-footer__main {
		padding: 52px 24px 46px;
	}

	.bp-footer__container {
		grid-template-columns: 1fr 1fr;
		gap: 42px 32px;
	}

	.bp-footer__brand {
		grid-column: 1 / -1;
		max-width: 460px;
	}

	.bp-footer__contact {
		grid-column: 1 / -1;
	}

	.bp-footer__bottom {
		padding-left: 24px;
		padding-right: 24px;
	}

	.bp-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 8px;

		min-height: 88px;
		padding: 18px 0;
	}
}


/* ------------------------------------------------------------
   MOBILE
------------------------------------------------------------ */

@media (max-width: 520px) {

	.bp-footer__main {
		padding: 46px 21px 40px;
	}

	.bp-footer__container {
		display: block;
	}

	.bp-footer__brand,
	.bp-footer__column {
		margin-bottom: 40px;
	}

	.bp-footer__contact {
		margin-bottom: 0;
	}

	.bp-footer__logo {
		max-width: 200px;
	}

	.bp-footer__brand-copy {
		font-size: 14.5px;
	}

	.bp-footer__links a {
		font-size: 15px;
	}

	.bp-footer__button {
		width: 100%;
		max-width: 320px;
	}

	.bp-footer__bottom {
		padding-left: 21px;
		padding-right: 21px;
	}
}


/* ------------------------------------------------------------
   REDUCED MOTION ACCESSIBILITY
------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {

	.bp-footer *,
	.bp-footer *::before,
	.bp-footer *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
/* ============================================================
   BLUE PALM PREMIUM FOOTER
   MODULE 1 — FINAL POLISH
   ============================================================ */


/* Refine overall proportions */

.bp-footer__main {
	padding-top: 66px;
	padding-bottom: 62px;
}


/* Slightly improve four-column distribution */

.bp-footer__container {
	grid-template-columns:
		minmax(285px, 1.35fr)
		minmax(140px, 0.65fr)
		minmax(220px, 1fr)
		minmax(260px, 1.05fr);

	gap: 64px;
}


/* ------------------------------------------------------------
   BRAND REFINEMENT
------------------------------------------------------------ */

.bp-footer__brand {
	max-width: 350px;
}


/*
 * Give the logo more presence without allowing it
 * to dominate the footer.
 */

.bp-footer__logo-link {
	margin-bottom: 27px;
}


.bp-footer__logo {
	max-width: 235px;
	max-height: 105px;
}


/* Improve readability */

.bp-footer__brand-copy {
	max-width: 325px;

	color: rgba(233, 240, 244, 0.78);

	font-size: 15px;
	line-height: 1.82;
}


/* Make the promise feel more intentional */

.bp-footer__promise {
	margin-top: 23px;

	color: rgba(255, 255, 255, 0.94);

	font-size: 11.5px;
	font-weight: 700;

	letter-spacing: 0.14em;
}


/* ------------------------------------------------------------
   HEADINGS
------------------------------------------------------------ */

.bp-footer__heading {
	margin-bottom: 27px;

	color: rgba(255, 255, 255, 0.96);

	font-size: 13px;
	font-weight: 700;

	letter-spacing: 0.12em;
}


/* slightly more elegant gold rule */

.bp-footer__heading::after {
	width: 31px;
	height: 2px;
}


/* ------------------------------------------------------------
   LINKS
------------------------------------------------------------ */

.bp-footer__links li {
	margin-bottom: 12px;
}


.bp-footer__links a {
	color: rgba(233, 240, 244, 0.76);

	font-size: 14.5px;
	line-height: 1.6;
}


/* ------------------------------------------------------------
   CONTACT COLUMN
------------------------------------------------------------ */

.bp-footer__contact-copy {
	color: rgba(233, 240, 244, 0.76);

	line-height: 1.78;

	margin-bottom: 27px;
}


.bp-footer__button {
	min-height: 50px;

	padding-left: 22px;
	padding-right: 22px;

	border-radius: 2px;

	letter-spacing: 0.055em;
}


/* ------------------------------------------------------------
   COPYRIGHT BAR
------------------------------------------------------------ */

.bp-footer__bottom {
	background:
		linear-gradient(
			90deg,
			#061824 0%,
			#071c2a 50%,
			#061824 100%
		);
}


.bp-footer__bottom-inner {
	min-height: 72px;
}


.bp-footer__copyright {
	color: rgba(233, 240, 244, 0.62);

	font-size: 12px;

	letter-spacing: 0.025em;
}


/* ------------------------------------------------------------
   TABLET CORRECTION
------------------------------------------------------------ */

@media (max-width: 1024px) {

	.bp-footer__container {
		grid-template-columns:
			minmax(250px, 1.3fr)
			minmax(155px, 0.7fr)
			minmax(220px, 1fr);

		gap: 48px 38px;
	}

}


/* ------------------------------------------------------------
   MOBILE CORRECTION
------------------------------------------------------------ */

@media (max-width: 520px) {

	.bp-footer__main {
		padding-top: 48px;
		padding-bottom: 42px;
	}

	.bp-footer__logo {
		max-width: 215px;
		max-height: 100px;
	}

}
/* ============================================================
   BLUE PALM PREMIUM FOOTER
   MODULE 1 — MOBILE FINAL OPTIMIZATION
   ============================================================ */

@media (max-width: 520px) {

	/* Main footer */
	.bp-footer__main {
		padding: 42px 24px 38px;
	}

	.bp-footer__container {
		display: block;
	}


	/* --------------------------
	   BRAND
	-------------------------- */

	.bp-footer__brand {
		max-width: 100%;
		margin-bottom: 38px;
	}

	.bp-footer__logo-link {
		margin-bottom: 22px;
	}

	.bp-footer__logo {
		width: auto;
		max-width: 185px;
		max-height: 92px;
	}

	.bp-footer__brand-copy {
		max-width: 330px;

		margin-bottom: 18px;

		font-size: 15px;
		line-height: 1.72;
	}

	.bp-footer__promise {
		max-width: 340px;

		margin-top: 18px;
		padding-left: 15px;

		font-size: 10.5px;
		line-height: 1.65;
		letter-spacing: 0.12em;
	}


	/* --------------------------
	   COLUMNS
	-------------------------- */

	.bp-footer__column {
		margin-bottom: 36px;
	}

	.bp-footer__contact {
		margin-bottom: 0;
	}


	/* --------------------------
	   HEADINGS
	-------------------------- */

	.bp-footer__heading {
		margin-bottom: 21px;
		padding-bottom: 11px;

		font-size: 12px;
		letter-spacing: 0.11em;
	}

	.bp-footer__heading::after {
		width: 28px;
	}


	/* --------------------------
	   LINKS
	-------------------------- */

	.bp-footer__links li {
		margin-bottom: 8px;
	}

	.bp-footer__links a {
		padding: 4px 0;

		font-size: 15px;
		line-height: 1.5;
	}


	/* --------------------------
	   CONTACT
	-------------------------- */

	.bp-footer__contact-copy {
		max-width: 330px;

		margin-bottom: 22px;

		font-size: 15px;
		line-height: 1.7;
	}


	/* CTA should be substantial,
	   but not dominate the screen */

	.bp-footer__button {
		width: auto;
		max-width: none;
		min-height: 48px;

		padding: 12px 19px;

		font-size: 12px;
		letter-spacing: 0.045em;
	}


	/* --------------------------
	   COPYRIGHT
	-------------------------- */

	.bp-footer__bottom {
		padding-left: 24px;
		padding-right: 24px;
	}

	.bp-footer__bottom-inner {
		min-height: 70px;

		padding: 16px 0;

		gap: 7px;
	}

	.bp-footer__copyright {
		max-width: 300px;

		font-size: 11px;
		line-height: 1.55;
	}

	.bp-footer__legal a {
		font-size: 11px;
	}

}
/* ============================================================
   BLUE PALM PROPERTY CARE
   PREMIUM FOOTER — MODULE 2
   CONTACT UTILITY BAR
   ============================================================ */


.bp-contact-bar {
	--bp-contact-navy: #081f31;
	--bp-contact-navy-deep: #061824;

	--bp-contact-gold: #c9a55c;
	--bp-contact-gold-light: #e0c47c;

	--bp-contact-white: #ffffff;
	--bp-contact-muted: #aebfc9;

	--bp-contact-border: rgba(201, 165, 92, 0.28);

	position: relative;

	width: 100%;

	margin: 0;
	padding: 0 28px;

	background:
		linear-gradient(
			90deg,
			#071b2a 0%,
			#0a2639 50%,
			#071b2a 100%
		);

	border-top:
		1px solid rgba(201, 165, 92, 0.48);

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

	color: var(--bp-contact-white);

	font-family: inherit;
}


.bp-contact-bar__inner {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	width: 100%;
	max-width: 1240px;

	margin: 0 auto;
}


/* ------------------------------------------------------------
   CONTACT ITEMS
------------------------------------------------------------ */

.bp-contact-bar__item {
	position: relative;

	display: flex;
	align-items: center;

	gap: 18px;

	min-height: 116px;

	padding: 24px 38px;

	color: inherit;
	text-decoration: none;

	transition:
		background 180ms ease,
		color 180ms ease;
}


/* dividers */

.bp-contact-bar__item:not(:last-child)::after {
	content: "";

	position: absolute;

	right: 0;
	top: 25%;

	width: 1px;
	height: 50%;

	background:
		linear-gradient(
			to bottom,
			transparent,
			var(--bp-contact-border),
			transparent
		);
}


/* ------------------------------------------------------------
   ICON
------------------------------------------------------------ */

.bp-contact-bar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	width: 48px;
	height: 48px;

	border:
		1px solid rgba(201, 165, 92, 0.5);

	border-radius: 50%;

	color: var(--bp-contact-gold-light);

	background:
		rgba(201, 165, 92, 0.045);

	transition:
		background 180ms ease,
		color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease;
}


/* ------------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------------ */

.bp-contact-bar__text {
	display: flex;
	flex-direction: column;

	min-width: 0;

	gap: 5px;
}


.bp-contact-bar__label {
	color:
		rgba(255, 255, 255, 0.7);

	font-size: 11px;
	font-weight: 700;

	line-height: 1.3;

	letter-spacing: 0.13em;

	text-transform: uppercase;
}


.bp-contact-bar__value {
	color: var(--bp-contact-white);

	font-size: 16px;
	font-weight: 600;

	line-height: 1.45;

	letter-spacing: 0.01em;
}


.bp-contact-bar__value--email {
	font-size: 14px;
}


/* ------------------------------------------------------------
   HOVER
------------------------------------------------------------ */

.bp-contact-bar__item:hover,
.bp-contact-bar__item:focus-visible {
	background:
		rgba(255, 255, 255, 0.035);

	color: var(--bp-contact-gold-light);
}


.bp-contact-bar__item:hover
.bp-contact-bar__icon,
.bp-contact-bar__item:focus-visible
.bp-contact-bar__icon {
	background:
		var(--bp-contact-gold);

	color:
		var(--bp-contact-navy-deep);

	border-color:
		var(--bp-contact-gold);

	transform:
		translateY(-2px);
}


.bp-contact-bar__item:focus-visible {
	outline:
		2px solid var(--bp-contact-gold-light);

	outline-offset:
		-4px;
}


/* ------------------------------------------------------------
   REQUEST SERVICE EMPHASIS
------------------------------------------------------------ */

.bp-contact-bar__item--cta {
	background: transparent;
}


.bp-contact-bar__item--cta
.bp-contact-bar__value {
	color:
		var(--bp-contact-gold-light);
}


/* ------------------------------------------------------------
   TABLET
------------------------------------------------------------ */

@media (max-width: 1024px) {

	.bp-contact-bar {
		padding-left: 24px;
		padding-right: 24px;
	}

	.bp-contact-bar__item {
		min-height: 105px;

		padding:
			22px 20px;

		gap: 14px;
	}

	.bp-contact-bar__icon {
		width: 44px;
		height: 44px;
	}

	.bp-contact-bar__value {
		font-size: 14px;
	}

	.bp-contact-bar__value--email {
		font-size: 12px;
	}

}


/* ------------------------------------------------------------
   MOBILE
------------------------------------------------------------ */

@media (max-width: 700px) {

	.bp-contact-bar {
		padding: 0 24px;
	}


	.bp-contact-bar__inner {
		display: block;
	}


	.bp-contact-bar__item {
		min-height: 82px;

		padding: 16px 2px;

		gap: 16px;
	}


	/* replace desktop vertical separators
	   with mobile horizontal separators */

	.bp-contact-bar__item:not(:last-child)::after {
		top: auto;
		right: 0;
		bottom: 0;

		width: 100%;
		height: 1px;

		background:
			linear-gradient(
				90deg,
				transparent,
				var(--bp-contact-border) 15%,
				var(--bp-contact-border) 85%,
				transparent
			);
	}


	.bp-contact-bar__icon {
		width: 43px;
		height: 43px;
	}


	.bp-contact-bar__label {
		font-size: 10px;
	}


	.bp-contact-bar__value {
		font-size: 15px;
	}


	.bp-contact-bar__value--email {
		font-size: 13px;

		overflow-wrap: anywhere;
	}


	.bp-contact-bar__item--cta {
		background: transparent;
	}

}


/* ------------------------------------------------------------
   SMALL MOBILE
------------------------------------------------------------ */

@media (max-width: 390px) {

	.bp-contact-bar {
		padding-left: 21px;
		padding-right: 21px;
	}

	.bp-contact-bar__item {
		gap: 14px;
	}

	.bp-contact-bar__value {
		font-size: 14px;
	}

	.bp-contact-bar__value--email {
		font-size: 12px;
	}

}


/* ------------------------------------------------------------
   REDUCED MOTION
------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {

	.bp-contact-bar *,
	.bp-contact-bar *::before,
	.bp-contact-bar *::after {
		transition-duration: 0.01ms !important;
	}

}
/* ============================================================
   BLUE PALM PREMIUM FOOTER
   MODULE 2 — DESKTOP FINAL POLISH
   ============================================================ */

@media (min-width: 1025px) {

	.bp-contact-bar__item--cta {
	background: transparent;
	}

	.bp-contact-bar__item--cta {
		background: transparent;
	}

	.bp-contact-bar__item--cta:hover,
	.bp-contact-bar__item--cta:focus-visible {
		background: rgba(255, 255, 255, 0.035);
	}

}
/* ============================================================
   BLUE PALM FOOTER — FINAL LOGO SIZE
   ============================================================ */

/* Desktop */
@media (min-width: 1025px) {

	.bp-footer__logo {
		max-width: 305px;
		max-height: 145px;
	}

}


/* Tablet */
@media (min-width: 521px) and (max-width: 1024px) {

	.bp-footer__logo {
		max-width: 245px;
		max-height: 120px;
	}

}


/* Mobile */
@media (max-width: 520px) {

	.bp-footer__logo {
		max-width: 205px;
		max-height: 105px;
	}

}
/* ============================================================
   BLUE PALM FLOATING ACTION BUTTONS
   ============================================================ */

.bp-float-actions {
	position: fixed;
	right: 22px;
	bottom: 90px;
	z-index: 99999;

	display: flex;
	flex-direction: column;
	align-items: flex-end;

	gap: 11px;
}


.bp-float-action {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: flex-start;

	width: 58px;
	height: 58px;

	padding: 0;

	overflow: hidden;
	box-sizing: border-box;

	border: 1px solid rgba(212, 161, 58, 0.88);
	border-radius: 29px;

	text-decoration: none !important;
	white-space: nowrap;

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

	box-shadow:
		0 10px 28px rgba(3, 20, 40, 0.34),
		0 3px 8px rgba(3, 20, 40, 0.20),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);

	transition:
		width 0.32s ease,
		transform 0.22s ease,
		box-shadow 0.22s ease,
		border-color 0.22s ease;
}


/* PHONE */

.bp-float-call {
	color: #ffffff !important;

	background:
		linear-gradient(
			135deg,
			rgba(3, 20, 40, 0.97),
			rgba(8, 43, 99, 0.95)
		);
}


/* FREE ESTIMATE */

.bp-float-estimate {
	color: #031428 !important;

	background:
		linear-gradient(
			135deg,
			#b98529 0%,
			#e3bd68 52%,
			#c89b3c 100%
		);
}


/* EXPANSION */

.bp-float-action:hover,
.bp-float-action:focus-visible {
	width: 218px;

	transform: translateY(-2px);

	box-shadow:
		0 15px 36px rgba(3, 20, 40, 0.40),
		0 4px 12px rgba(3, 20, 40, 0.22);
}


.bp-float-action:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 3px;
}


/* ICON */

.bp-float-icon {
	position: relative;
	z-index: 2;

	flex: 0 0 56px;

	width: 56px;
	height: 56px;

	display: flex;
	align-items: center;
	justify-content: center;
}


.bp-float-icon svg {
	width: 23px;
	height: 23px;

	fill: currentColor;
}


.bp-float-call .bp-float-icon {
	color: #d4a13a;
}


.bp-float-estimate .bp-float-icon {
	color: #031428;
}


/* LABEL */

.bp-float-label {
	min-width: 145px;

	padding-right: 18px;

	opacity: 0;

	transform: translateX(10px);

	transition:
		opacity 0.20s ease 0.05s,
		transform 0.25s ease 0.04s;
}


.bp-float-action:hover .bp-float-label,
.bp-float-action:focus-visible .bp-float-label {
	opacity: 1;

	transform: translateX(0);
}


.bp-float-label strong,
.bp-float-label small {
	display: block;

	margin: 0;

	line-height: 1.15;
}


.bp-float-label strong {
	font-size: 15px;
	font-weight: 700;

	letter-spacing: 0.02em;
}


.bp-float-label small {
	margin-top: 4px;

	font-size: 11px;
	font-weight: 500;

	letter-spacing: 0.04em;

	opacity: 0.86;
}


/* HIGHLIGHT SWEEP */

.bp-float-action::after {
	content: "";

	position: absolute;

	top: 0;
	left: -90%;

	width: 50%;
	height: 100%;

	pointer-events: none;

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.18),
			transparent
		);

	transform: skewX(-18deg);

	transition: left 0.6s ease;
}


.bp-float-action:hover::after {
	left: 135%;
}


/* ============================================================
   MOBILE FIXED CTA BAR
   ============================================================ */

@media (max-width: 767px) {

	body {
		padding-bottom:
			calc(62px + env(safe-area-inset-bottom));
	}


	.bp-float-actions {
		right: 0;
		bottom: 0;
		left: 0;

		display: grid;

		grid-template-columns: 1fr 1fr;

		gap: 0;

		width: 100%;

		padding-bottom:
			env(safe-area-inset-bottom);

		background: #031428;

		border-top:
			1px solid rgba(212, 161, 58, 0.8);

		box-shadow:
			0 -7px 24px rgba(3, 20, 40, 0.28);
	}


	.bp-float-action,
	.bp-float-action:hover,
	.bp-float-action:focus-visible {
		width: 100%;
		height: 62px;

		transform: none;

		border: 0;
		border-radius: 0;

		box-shadow: none;

		overflow: visible;

		justify-content: center;

		padding: 0 8px;
	}


	.bp-float-call {
		border-right:
			1px solid rgba(212, 161, 58, 0.55);
	}


	.bp-float-icon {
		flex: 0 0 32px;

		width: 32px;
		height: 32px;
	}


	.bp-float-icon svg {
		width: 20px;
		height: 20px;
	}


	.bp-float-label {
		min-width: 0;

		padding-right: 0;

		opacity: 1;

		transform: none;
	}


	.bp-float-label strong {
		font-size: 13px;
	}


	.bp-float-label small {
		margin-top: 2px;

		font-size: 9px;
	}


	.bp-float-action::after {
		display: none;
	}

}


/* EXTRA-SMALL PHONES */

@media (max-width: 365px) {

	.bp-float-icon {
		flex-basis: 26px;

		width: 26px;
	}


	.bp-float-label strong {
		font-size: 11px;
	}


	.bp-float-label small {
		font-size: 8px;
	}

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

	.bp-float-action,
	.bp-float-label,
	.bp-float-action::after {
		transition: none !important;
	}

}


/* PRINT */

@media print {

	.bp-float-actions {
		display: none !important;
	}

}