#bc-page-scope .breadcrumb-nav {
	background: #f8f9fa;
	padding: 15px 0;
	border-bottom: 1px solid var(--border);
}

#bc-page-scope .breadcrumb {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

#bc-page-scope .breadcrumb li {
	color: #666;
}

#bc-page-scope .breadcrumb li:not(:last-child)::after {
	content: "›";
	margin-left: 10px;
	color: #999;
}

#bc-page-scope .breadcrumb a {
	color: var(--accent);
	text-decoration: none;
}

#bc-page-scope .breadcrumb a:hover {
	text-decoration: underline;
}

@media (max-width: 1200px) {}

@media (max-width: 768px) {}

#bc-page-scope .contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

#bc-page-scope .contact-card {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 15px;
	margin-bottom: 30px;
}

#bc-page-scope .contact-head {
	color: var(--accent);
	margin-bottom: 20px;
	font-size: 20px;
}

#bc-page-scope .contact-phone {
	font-size: 24px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 10px;
}

#bc-page-scope .contact-form-card {
	background: #f8f9fa;
	padding: 40px;
	border-radius: 15px;
}

#bc-page-scope .form-note {
	font-size: 14px;
	color: #666;
	text-align: center;
	margin-top: 15px;
}

#bc-page-scope .sticky-sidebar {
	position: sticky !important;
	top: 20px !important;
	height: fit-content !important;
	align-self: flex-start !important;
}

#bc-page-scope .scroll-top {
	position: fixed !important;
	bottom: 30px !important;
	right: 30px !important;
	background: var(--accent) !important;
	color: #fff !important;
	width: 50px !important;
	height: 50px !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	opacity: 0 !important;
	transition: all .3s ease !important;
	z-index: 1000 !important;
	text-decoration: none !important;
	font-size: 20px !important;
}

#bc-page-scope .scroll-top.visible {
	opacity: 1 !important;
}

#bc-page-scope .scroll-top:hover {
	background: #1a8f3a !important;
	transform: translateY(-3px) !important;
}

#bc-page-scope .fade-in, #bc-page-scope .fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

#bc-page-scope .text-center {
	text-align: center;
}

@media (max-width: 991px) {
	#bc-page-scope .contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {}

@media (max-width: 480px) {}