/*! Blue Note Pros — Site Footer widget styles (new section, no HTML/CSS in reference index.html) */
.bnp-site-footer {
	background: linear-gradient(253.57deg, #052444 27.27%, #02152A 100.54%);
	color: var(--bnp-white);
	border-top: 3px solid var(--bnp-cyan);
	font-family: var(--bnp-font-roboto);
	padding: 59px 0 0;
}

.bnp-site-footer .bnp-container {
	max-width: 1200px;
	margin: 0 auto;
	padding-inline: var(--bnp-container-pad);
	box-sizing: content-box;
}

.bnp-site-footer .bnp-footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 40px;
}

.bnp-site-footer .bnp-footer-stack {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.bnp-site-footer .bnp-footer-logo {
	display: inline-block;
	margin-bottom: 24px;
	line-height: 0;
}

.bnp-site-footer .bnp-footer-logo img {
	width: 212px;
	height: auto;
	/* filter: brightness(0) invert(1); */
}

.bnp-site-footer .bnp-footer-col h4 {
    margin: 0 0 18px;
    font-family: var(--bnp-font-config);
    color: #00A1BA;
    font-weight: 400;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 3%;
    vertical-align: middle;
	border-bottom: 2px solid #006170;
	padding-bottom: 18px;
}

.bnp-site-footer .bnp-footer-connect h4 {
	margin-bottom: 14px;
}

.bnp-site-footer .bnp-footer-social {
	display: flex;
	align-items: center;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bnp-site-footer .bnp-footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	color: var(--bnp-white);
	transition: background 0.2s ease, color 0.2s ease;
}

.bnp-site-footer .bnp-footer-social a:hover {
	background: var(--bnp-cyan);
	color: var(--bnp-white);
}

.bnp-site-footer .bnp-footer-social svg,
.bnp-site-footer .bnp-footer-social img {
	width: 15px;
	height: 15px;
	display: block;
	object-fit: contain;
}


.bnp-site-footer .bnp-footer-address {
	font-family: var(--bnp-font-roboto);
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 32px;
	color: #FFFFFF;
}

.bnp-site-footer .bnp-footer-phone {
	font-family: var(--bnp-font-roboto);
	display: block;
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 32px;
	color: #FFFFFF;
	text-decoration: none;
}

.bnp-site-footer .bnp-footer-phone:hover {
	color: var(--bnp-white);
}

.bnp-site-footer .bnp-footer-hours {
	margin: 0;
	font-size: 15px;
	line-height: 24px;
	color: rgba(255,255,255,0.85);
}

.bnp-site-footer .bnp-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bnp-site-footer .bnp-footer-links a {
	font-size: 15px;
	line-height: 20px;
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	transition: color 0.2s ease;
}

.bnp-site-footer .bnp-footer-links a:hover {
	color: var(--bnp-cyan);
}

.bnp-site-footer .bnp-footer-help-text,
.bnp-site-footer .bnp-footer-reviews-text {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 22px;
	color: rgba(255,255,255,0.85);
}

.bnp-site-footer .bnp-footer-reviews {
	margin-top: 32px;
}

.bnp-site-footer .bnp-footer-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1px solid var(--bnp-cyan);
	border-radius: 8px;
	background: transparent;
	color: var(--bnp-white);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.25s ease;
	box-shadow: 2px 2px 0px 0px #00A2BB;

}

.bnp-site-footer .bnp-footer-btn:hover {
	background: var(--bnp-cyan);
}

.bnp-site-footer .bnp-footer-btn img {
	width: 8px;
	height: 10px;
	filter: brightness(0) invert(1);
}

.bnp-site-footer .bnp-footer-bottom {
    padding: 6px 0;
    text-align: center;
    background: #02162B;
}

.bnp-site-footer .bnp-footer-copyright {
	margin: 0;
	font-family: var(--bnp-font-roboto);
	font-size: 10px;
	line-height: 24px;
	color: #00A1BA;
}

@media (max-width: 991px) {
	.bnp-site-footer .bnp-footer-grid {
		grid-template-columns: 1fr 1fr;
		row-gap: 40px;
	}
}

@media (max-width: 767px) {
	.bnp-site-footer .bnp-footer-logo img {
		width: 142px;
	}
	.bnp-site-footer{
		padding-top: 20px;
	}
	.bnp-site-footer .bnp-footer-col h4,
	.bnp-site-footer .bnp-footer-connect h4 {
		font-size: 23px;
		padding-bottom: 0px;
	}
	.bnp-site-footer .bnp-footer-grid {
		grid-template-columns: 1fr;
		grid-gap: 15px;
	}
	
	.bnp-site-footer .bnp-footer-address {
		line-height: normal;
		margin-bottom: 0;
	}
	.bnp-site-footer .bnp-footer-stack{
		grid-gap: 20px;
	}
	.bnp-site-footer .bnp-footer-reviews {
		margin-top: 20px;
	}
}
