/* ==========================================================================
   Boise Car Rentals — Premium Design System
   Modern, clean, and professional styling with smooth animations
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
	--bcr-navy: #0f1f3a;
	--bcr-navy-light: #1a2f52;
	--bcr-navy-dark: #0a1628;
	--bcr-accent: #f59e0b;
	--bcr-accent-dark: #d97706;
	--bcr-accent-light: #fef3c7;
	--bcr-green: #10b981;
	--bcr-bg: #fafaf9;
	--bcr-surface: #ffffff;
	--bcr-text: #1c1917;
	--bcr-text-muted: #78716c;
	--bcr-border: #e7e5e4;
	--bcr-radius-sm: 12px;
	--bcr-radius: 20px;
	--bcr-radius-lg: 28px;
	--bcr-shadow-sm: 0 1px 3px rgba(15, 31, 58, 0.04), 0 1px 2px rgba(15, 31, 58, 0.06);
	--bcr-shadow: 0 4px 12px rgba(15, 31, 58, 0.08), 0 2px 4px rgba(15, 31, 58, 0.04);
	--bcr-shadow-lg: 0 20px 50px rgba(15, 31, 58, 0.12), 0 8px 16px rgba(15, 31, 58, 0.06);
	--bcr-shadow-xl: 0 25px 60px rgba(15, 31, 58, 0.15), 0 10px 20px rgba(15, 31, 58, 0.08);
	--bcr-font-heading: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	--bcr-font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	--bcr-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base & Reset ---------- */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--bcr-font-body);
	color: var(--bcr-text);
	background: var(--bcr-bg);
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--bcr-font-heading);
	font-weight: 700;
	color: var(--bcr-navy);
	line-height: 1.25;
	margin-bottom: 0.5em;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1rem; }
h5 { font-size: 0.95rem; }
h6 { font-size: 0.85rem; }

p {
	margin-bottom: 1rem;
	color: var(--bcr-text-muted);
}

a {
	color: var(--bcr-accent-dark);
	text-decoration: none;
	transition: var(--bcr-transition);
}

a:hover {
	color: var(--bcr-accent);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

::selection {
	background: var(--bcr-accent);
	color: #fff;
}

/* ---------- Buttons ---------- */
.btn {
	font-family: var(--bcr-font-heading);
	font-weight: 600;
	border-radius: var(--bcr-radius-sm);
	padding: 0.6rem 1.4rem;
	transition: var(--bcr-transition);
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	text-decoration: none;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--bcr-shadow-lg);
}

.btn-lg {
	padding: 0.7rem 1.6rem;
	font-size: 0.92rem;
	border: 1px solid black;
}

.btn-sm {
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
}

.bcr-btn-accent {
	background: linear-gradient(135deg, var(--bcr-accent) 0%, var(--bcr-accent-dark) 100%);
	color: #fff;
	box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.bcr-btn-accent:hover {
	background: linear-gradient(135deg, var(--bcr-accent-dark) 0%, #b45309 100%);
	color: #fff;
	box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.bcr-btn-outline {
	background: transparent;
	border: 2px solid var(--bcr-navy);
	color: var(--bcr-navy);
}

.bcr-btn-outline:hover {
	background: var(--bcr-navy);
	color: #fff;
}

.bcr-btn-white {
	background: #fff;
	color: var(--bcr-navy);
	box-shadow: var(--bcr-shadow);
}

.bcr-btn-white:hover {
	background: var(--bcr-accent-light);
	color: var(--bcr-navy);
}

/* ---------- Header & Navigation ---------- */
.bcr-header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 1px 0 rgba(15, 31, 58, 0.06);
	position: sticky;
	top: 0;
	z-index: 1030;
	border-bottom: 1px solid rgba(15, 31, 58, 0.06);
}

.bcr-navbar {
	padding: 1.25rem 0;
}

.bcr-navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bcr-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.bcr-logo img {
	max-height: 60px;
	width: auto;
}

.bcr-logo-text {
	font-family: var(--bcr-font-heading);
	font-weight: 800;
	font-size: 1.6rem;
	color: var(--bcr-navy);
	display: flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	transition: var(--bcr-transition);
	letter-spacing: -0.02em;
}

.bcr-logo-text:hover {
	color: var(--bcr-accent-dark);
	transform: translateY(-1px);
}

.bcr-logo-text i {
	color: var(--bcr-accent);
	font-size: 1.8rem;
}

.bcr-logo-text-light {
	color: #fff;
}

.navbar-toggler {
	border: none;
	padding: 0.5rem;
	color: var(--bcr-navy);
	font-size: 1.75rem;
	background: transparent;
	cursor: pointer;
	transition: var(--bcr-transition);
}

.navbar-toggler:hover {
	color: var(--bcr-accent);
	transform: scale(1.1);
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

.bcr-header-links {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.bcr-header-link {
	color: var(--bcr-text);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: var(--bcr-radius-sm);
	transition: var(--bcr-transition);
	position: relative;
	font-family: var(--bcr-font-heading);
}

.bcr-header-link::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background: linear-gradient(180deg, var(--bcr-accent) 0%, var(--bcr-accent-dark) 100%);
	border-radius: 2px;
	transition: var(--bcr-transition);
}

.bcr-header-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--bcr-accent);
	transition: var(--bcr-transition);
}

.bcr-header-link:hover {
	color: var(--bcr-accent-dark);
}

.bcr-header-link:hover::before {
	height: 60%;
}

.bcr-header-link:hover::after {
	width: 60%;
}

.bcr-page-header {
	background: var(--bcr-surface);
	border-bottom: 1px solid var(--bcr-border);
	padding: 1rem 0;
}

.bcr-breadcrumbs .breadcrumb {
	margin: 0;
	font-size: 0.9rem;
}

.bcr-breadcrumbs a {
	color: var(--bcr-text-muted);
}

/* ---------- Hero Section ---------- */
.bcr-hero {
	position: relative;
	color: #fff;
	overflow: hidden;
}

.bcr-hero-banner {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--bcr-navy);
}

.bcr-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 31, 58, 0.85) 0%, rgba(15, 31, 58, 0.65) 50%, rgba(26, 47, 82, 0.75) 100%);
}

.bcr-hero-inner {
	position: relative;
	z-index: 2;
	padding: 6rem 0 9rem;
}

.bcr-hero-content {
	max-width: 750px;
	animation: bcr-fade-in-up 1s ease-out;
	margin-left: 5px ;
}

.bcr-hero-eyebrow {
	display: none;
}

.bcr-hero-title {
	font-size: clamp(1.8rem, 4.5vw, 3rem);
	color: #fff;
	margin: 0.75rem 0 1.5rem;
	font-weight: 800;
	line-height: 1.05;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.03em;
}

.bcr-hero-subtitle {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 650px;
	line-height: 1.7;
	margin-bottom: 2.5rem;
	font-weight: 400;
}

.bcr-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.bcr-btn-outline-white {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	backdrop-filter: blur(10px);
}

.bcr-btn-outline-white:hover {
	background: #fff;
	color: var(--bcr-navy);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes bcr-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ---------- Search Form ---------- */
.bcr-search-wrap {
	position: relative;
	z-index: 10;
	margin-top: -5rem;
}

.bcr-search-form {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius-lg);
	box-shadow: var(--bcr-shadow-xl);
	padding: 2rem;
	border: 1px solid rgba(15, 31, 58, 0.06);
}

.bcr-search-form .form-label {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--bcr-text-muted);
	margin-bottom: 0.25rem;
	font-family: var(--bcr-font-heading);
}

.bcr-search-form .form-control,
.bcr-search-form .form-select {
	border-radius: var(--bcr-radius-sm);
	border: 1.5px solid var(--bcr-border);
	padding: 0.45rem 0.7rem;
	font-size: 0.82rem;
	transition: var(--bcr-transition);
	background: var(--bcr-surface);
}

.bcr-search-form .form-control:focus,
.bcr-search-form .form-select:focus {
	border-color: var(--bcr-accent);
	box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
	outline: none;
}

.bcr-search-pickup-field {
	background: var(--bcr-accent-light);
	border-radius: var(--bcr-radius-sm);
	padding: 0.5rem 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--bcr-navy);
	font-weight: 700;
	font-size: 0.82rem;
}

.bcr-search-pickup-field i {
	color: var(--bcr-accent-dark);
	font-size: 1.1rem;
}

.bcr-search-submit {
	height: 100%;
	min-height: 38px;
}

.bcr-search-form-check {
	font-size: 0.78rem;
	color: var(--bcr-text-muted);
}

/* ---------- Instant Qualifier Bar ---------- */
.bcr-qualifier-bar {
	background: linear-gradient(135deg, var(--bcr-navy) 0%, var(--bcr-navy-light) 100%);
	padding: 14px 0;
	position: relative;
	z-index: 3;
}

.bcr-qualifier-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px 24px;
}

.bcr-qualifier-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.82rem;
	font-weight: 600;
	white-space: nowrap;
}

.bcr-qualifier-item i {
	color: var(--bcr-accent);
	font-size: 0.85rem;
}

@media (max-width: 767.98px) {
	.bcr-qualifier-inner {
		gap: 8px 16px;
		justify-content: flex-start;
	}
	.bcr-qualifier-item {
		font-size: 0.75rem;
		white-space: normal;
	}
}

/* ---------- Sections ---------- */
.bcr-section {
	padding: clamp(40px, 5vw, 72px) 0;
	position: relative;
}

.bcr-section-alt {
	background: var(--bcr-surface);
}

.bcr-section-eyebrow {
	color: var(--bcr-accent-dark);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.7rem;
	margin-bottom: 0.5rem;
	font-family: var(--bcr-font-heading);
}

.bcr-section-title {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.bcr-section-subtitle {
	color: var(--bcr-text-muted);
	max-width: 700px;
	margin: 0 auto 1.5rem;
	font-size: 0.9rem;
	line-height: 1.6;
}

.bcr-section-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

/* ---------- Feature Cards ---------- */
.bcr-feature-card {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	padding: 1.5rem 1.25rem;
	height: 100%;
	box-shadow: var(--bcr-shadow-sm);
	transition: var(--bcr-transition);
	border: 1px solid rgba(15, 31, 58, 0.04);
	position: relative;
	overflow: hidden;
}

.bcr-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--bcr-accent) 0%, var(--bcr-accent-dark) 100%);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.bcr-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--bcr-shadow-xl);
}

.bcr-feature-card:hover::before {
	transform: scaleX(1);
}

.bcr-feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--bcr-accent-light) 0%, #fef9e7 100%);
	color: var(--bcr-accent-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.bcr-feature-card h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.bcr-feature-card p {
	color: var(--bcr-text-muted);
	margin: 0;
	line-height: 1.7;
}

/* ---------- Location Cards ---------- */
.bcr-location-card {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	overflow: hidden;
	box-shadow: var(--bcr-shadow-sm);
	display: block;
	height: 100%;
	transition: var(--bcr-transition);
	border: 1px solid rgba(15, 31, 58, 0.04);
}

.bcr-location-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--bcr-shadow-lg);
}

.bcr-location-card-img {
	height: 140px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.bcr-location-card-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(15, 31, 58, 0.4) 100%);
}

.bcr-location-card-body {
	padding: 1rem;
}

.bcr-location-card-title {
	font-size: 0.95rem;
	margin-bottom: 0.25rem;
	color: var(--bcr-navy);
	font-weight: 700;
	font-family: var(--bcr-font-heading);
}

.bcr-location-card-sub {
	font-size: 0.9rem;
	color: var(--bcr-text-muted);
}

/* ---------- Category Cards ---------- */
.bcr-category-card {
	text-align: center;
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	padding: 1.25rem 1rem;
	box-shadow: var(--bcr-shadow-sm);
	height: 100%;
	transition: var(--bcr-transition);
	border: 1px solid rgba(15, 31, 58, 0.04);
	display: block;
	text-decoration: none;
}

.bcr-category-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--bcr-shadow-lg);
	border-color: var(--bcr-accent);
}

.bcr-category-icon {
	font-size: 1.8rem;
	color: var(--bcr-accent-dark);
	margin-bottom: 0.75rem;
	transition: var(--bcr-transition);
}

.bcr-category-card:hover .bcr-category-icon {
	transform: scale(1.15);
	color: var(--bcr-accent);
}

.bcr-category-card .fw-bold {
	color: var(--bcr-navy);
	font-weight: 700;
	font-family: var(--bcr-font-heading);
	font-size: 0.88rem;
}

/* ---------- Brand Slider (Infinite Scroll) ---------- */
.bcr-brands-section {
	background: var(--bcr-surface);
	overflow: hidden;
}

.brand-slider {
	overflow: hidden;
	width: 100%;
	padding: 1.5rem 0 2.5rem;
	position: relative;
	background: var(--bcr-surface);
}

.brand-slider::before,
.brand-slider::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}

.brand-slider::before {
	left: 0;
	background: linear-gradient(90deg, var(--bcr-surface) 0%, transparent 100%);
}

.brand-slider::after {
	right: 0;
	background: linear-gradient(90deg, transparent 0%, var(--bcr-surface) 100%);
}

.brand-track {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 4rem;
	animation: brandScroll 25s linear infinite;
	width: fit-content;
	padding: 0 2rem;
}

.brand-logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	min-width: 130px;
	padding: 0.5rem;
}

.brand-logo img {
	max-height: 50px;
	max-width: 130px;
	height: auto;
	width: auto;
	opacity: 0.55;
	/*filter: grayscale(100%) brightness(1.1);*/
	transition: all 0.4s ease;
	object-fit: contain;
	display: block;
}

.brand-logo:hover img {
	opacity: 1;
	filter: none;
	transform: scale(1.12);
}

@keyframes brandScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ---------- Deal Cards ---------- */
.bcr-deal-card {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	overflow: hidden;
	box-shadow: var(--bcr-shadow-sm);
	height: 100%;
	transition: var(--bcr-transition);
	border: 1px solid rgba(15, 31, 58, 0.04);
}

.bcr-deal-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--bcr-shadow-xl);
}

.bcr-deal-img {
	height: 160px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.bcr-deal-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(15, 31, 58, 0.5) 100%);
}

.bcr-deal-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: linear-gradient(135deg, var(--bcr-accent) 0%, var(--bcr-accent-dark) 100%);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.4rem 1rem;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
	z-index: 1;
}

.bcr-deal-body {
	padding: 1.25rem;
}

.bcr-deal-body h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.bcr-deal-body p {
	color: var(--bcr-text-muted);
	margin-bottom: 0.5rem;
	line-height: 1.5;
	font-size: 0.82rem;
}

.bcr-deal-price {
	color: var(--bcr-accent-dark);
	font-weight: 800;
	font-size: 1rem;
	font-family: var(--bcr-font-heading);
}

/* ---------- Testimonials ---------- */
.bcr-testimonial-card {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	padding: 1.5rem;
	box-shadow: var(--bcr-shadow-sm);
	height: 100%;
	transition: var(--bcr-transition);
	border: 1px solid rgba(15, 31, 58, 0.04);
	position: relative;
}

.bcr-testimonial-card::before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 5rem;
	line-height: 1;
	color: var(--bcr-accent);
	opacity: 0.15;
	font-family: Georgia, serif;
}

.bcr-testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--bcr-shadow-lg);
}

.bcr-testimonial-quote {
	color: var(--bcr-accent);
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.bcr-testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--bcr-border);
}

.bcr-testimonial-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--bcr-accent-light);
}

.bcr-stars {
	color: var(--bcr-accent);
	font-size: 1rem;
	letter-spacing: 0.1rem;
}

/* ---------- Statistics ---------- */
.bcr-stats-section {
	background: linear-gradient(135deg, var(--bcr-navy) 0%, var(--bcr-navy-light) 100%);
	color: #fff;
	padding: clamp(36px, 4vw, 56px) 0;
	position: relative;
	overflow: hidden;
}

.bcr-stats-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.bcr-stat-item {
	text-align: center;
	position: relative;
	z-index: 1;
}

.bcr-stat-icon {
	font-size: 2rem;
	color: var(--bcr-accent);
	margin-bottom: 1rem;
}

.bcr-stat-number {
	font-family: var(--bcr-font-heading);
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 0.3rem;
	background: linear-gradient(135deg, #fff 0%, var(--bcr-accent-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.bcr-stat-label {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.82rem;
	font-weight: 500;
}

/* ---------- App Promotion ---------- */
.bcr-app-promo {
	background: linear-gradient(120deg, var(--bcr-navy) 0%, var(--bcr-navy-dark) 100%);
	border-radius: var(--bcr-radius-lg);
	color: #fff;
	padding: 4rem;
	overflow: hidden;
	position: relative;
	box-shadow: var(--bcr-shadow-xl);
}

.bcr-app-promo::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
	border-radius: 50%;
}

.bcr-app-promo h2 {
	color: #fff;
	font-size: 2rem;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.bcr-app-promo p {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.bcr-app-badges {
	display: flex;
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.bcr-app-badges a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: var(--bcr-radius-sm);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: var(--bcr-transition);
}

.bcr-app-badges a:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
}

.bcr-app-qr {
	background: #fff;
	padding: 15px;
	border-radius: 16px;
	display: inline-block;
	box-shadow: var(--bcr-shadow-lg);
}

/* ---------- CTA Banner ---------- */
.bcr-cta-banner {
	background: linear-gradient(135deg, var(--bcr-accent) 0%, var(--bcr-accent-dark) 100%);
	border-radius: var(--bcr-radius-lg);
	color: #fff;
	padding: clamp(2rem, 4vw, 3rem);
	text-align: center;
	box-shadow: 0 20px 50px rgba(245, 158, 11, 0.3);
	position: relative;
	overflow: hidden;
}

.bcr-cta-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}

.bcr-cta-banner h2 {
	color: #fff;
	font-size: clamp(1.4rem, 3.5vw, 2rem);
	margin-bottom: 0.75rem;
	position: relative;
	z-index: 1;
}

.bcr-cta-banner p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 0.88rem;
	margin-bottom: 1.25rem;
	position: relative;
	z-index: 1;
}

.bcr-cta-banner .btn {
	position: relative;
	z-index: 1;
}

/* ---------- FAQ - Premium Design ---------- */
.bcr-faq {
	background: linear-gradient(180deg, var(--bcr-bg) 0%, var(--bcr-surface) 100%);
	padding: clamp(40px, 5vw, 64px) 0;
}

.bcr-faq .accordion-item {
	border: 1px solid var(--bcr-border);
	border-radius: var(--bcr-radius) !important;
	overflow: hidden;
	margin-bottom: 1.5rem;
	box-shadow: var(--bcr-shadow-sm);
	background: var(--bcr-surface);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.bcr-faq .accordion-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--bcr-accent) 0%, var(--bcr-accent-dark) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bcr-faq .accordion-item:hover {
	box-shadow: var(--bcr-shadow);
	transform: translateX(6px);
}

.bcr-faq .accordion-item:hover::before {
	opacity: 1;
}

.bcr-faq .accordion-button {
	font-family: var(--bcr-font-heading);
	font-weight: 700;
	color: var(--bcr-navy);
	padding: 1.25rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--bcr-surface);
	border: none;
	width: 100%;
	text-align: left;
	font-size: 0.9rem;
}

.bcr-faq .accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, var(--bcr-accent-light) 0%, #fff 100%);
	color: var(--bcr-accent-dark);
	box-shadow: none;
}

.bcr-faq .accordion-button:focus {
	box-shadow: none;
	outline: none;
}

.bcr-faq-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--bcr-accent) 0%, var(--bcr-accent-dark) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
	box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
	position: relative;
}

.bcr-faq-icon::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 2px solid var(--bcr-accent);
	opacity: 0.3;
	animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
	0% {
		transform: scale(1);
		opacity: 0.3;
	}
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

.bcr-faq-question {
	flex: 1;
	text-align: left;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

.bcr-faq-toggle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bcr-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: var(--bcr-text-muted);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	border: 2px solid var(--bcr-border);
}

.bcr-faq .accordion-button:not(.collapsed) .bcr-faq-toggle {
	background: var(--bcr-accent);
	color: #fff;
	transform: rotate(180deg);
	border-color: var(--bcr-accent);
	box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
}

.bcr-faq-answer {
	padding: 0 1.25rem 1.25rem 1.25rem;
	color: var(--bcr-text);
	line-height: 1.7;
	font-size: 0.85rem;
	position: relative;
}

.bcr-faq-answer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 2rem;
	right: 2rem;
	height: 1px;
	background: linear-gradient(90deg, var(--bcr-border) 0%, transparent 100%);
}

.bcr-faq-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

/* ---------- Newsletter & Footer ---------- */

/* Footer Logo White */
.bcr-footer .bcr-logo img.custom-logo {
    max-width: 240px;
    height: auto;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.bcr-newsletter-strip {
	background: linear-gradient(135deg, var(--bcr-accent-dark) 0%, #b45309 100%);
	color: #fff;
	padding: 3rem 0;
}

.bcr-newsletter-form .form-control {
	border-radius: var(--bcr-radius-sm);
	border: none;
	padding: 1rem 1.25rem;
	font-size: 1rem;
}

.bcr-footer {
	background: linear-gradient(180deg, var(--bcr-navy-dark) 0%, #060d1a 100%);
	color: rgba(255, 255, 255, 0.8);
	padding: clamp(2.5rem, 4vw, 3.5rem) 0 0;
}

.bcr-footer-heading {
	color: #fff;
	font-size: 0.88rem;
	margin-bottom: 1rem;
	font-weight: 700;
	font-family: var(--bcr-font-heading);
}

.bcr-footer-links a,
.bcr-footer-contact a,
.bcr-footer-contact li {
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 0.4rem;
	transition: var(--bcr-transition);
	font-size: 0.8rem;
}

.bcr-footer-links a:hover {
	color: var(--bcr-accent);
	transform: translateX(4px);
}

.bcr-social-links {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.bcr-social-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: var(--bcr-transition);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.bcr-social-icon:hover {
	background: var(--bcr-accent);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.bcr-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.25rem 0;
	margin-top: 2.5rem;
	color: rgba(255, 255, 255, 0.6);
}

.bcr-legal-links a {
	color: rgba(255, 255, 255, 0.6);
	transition: var(--bcr-transition);
}

.bcr-legal-links a:hover {
	color: var(--bcr-accent);
}

.bcr-back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--bcr-accent) 0%, var(--bcr-accent-dark) 100%);
	color: #fff;
	border: none;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: var(--bcr-shadow-lg);
	z-index: 1040;
	cursor: pointer;
	transition: var(--bcr-transition);
}

.bcr-back-to-top.show {
	display: flex;
}

.bcr-back-to-top:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(245, 158, 11, 0.4);
}

/* ---------- Blog Styles - Premium ---------- */
.bcr-page-title {
	font-size: 2.75rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	letter-spacing: -0.03em;
	line-height: 1.15;
	background: linear-gradient(135deg, var(--bcr-navy) 0%, var(--bcr-navy-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.bcr-blog-listing .bcr-section-header {
	margin-bottom: 3.5rem;
}

.bcr-blog-listing .bcr-section-header .bcr-section-title {
	font-size: 2.5rem;
	margin-top: 0.5rem;
}

.bcr-blog-card {
	background: var(--bcr-surface);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(15, 31, 58, 0.06);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 1px solid rgba(15, 31, 58, 0.06);
	height: 100%;
	position: relative;
}

.bcr-blog-card::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 24px;
	border: 2px solid transparent;
	background: linear-gradient(135deg, var(--bcr-accent), var(--bcr-accent-dark)) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.bcr-blog-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 60px rgba(15, 31, 58, 0.12);
}

.bcr-blog-card:hover::after {
	opacity: 1;
}

.bcr-blog-card-thumb {
	position: relative;
	display: block;
	height: 240px;
	overflow: hidden;
}

.bcr-blog-card-thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(15, 31, 58, 0.3) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.bcr-blog-card:hover .bcr-blog-card-thumb::after {
	opacity: 1;
}

.bcr-blog-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bcr-blog-card:hover .bcr-blog-card-thumb img {
	transform: scale(1.12);
}

.bcr-blog-card-placeholder {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bcr-accent-light) 0%, #fef9e7 100%);
	font-size: 3.5rem;
	color: var(--bcr-accent);
}

.bcr-blog-card-cat {
	position: absolute;
	top: 20px;
	left: 20px;
	background: linear-gradient(135deg, var(--bcr-accent) 0%, var(--bcr-accent-dark) 100%);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 0.45rem 1.1rem;
	border-radius: 999px;
	z-index: 2;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
	text-transform: uppercase;
}

.bcr-blog-card-body {
	padding: 1.75rem 2rem 2rem;
}

.bcr-blog-card-meta {
	font-size: 0.8rem;
	color: var(--bcr-text-muted);
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--bcr-border);
}

.bcr-blog-card-meta span {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.bcr-blog-card-meta i {
	color: var(--bcr-accent);
	font-size: 0.85rem;
}

.bcr-blog-card-title {
	font-size: 1.35rem;
	margin-bottom: 0.85rem;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.bcr-blog-card-title a {
	color: var(--bcr-navy);
	transition: var(--bcr-transition);
}

.bcr-blog-card-title a:hover {
	color: var(--bcr-accent-dark);
}

.bcr-blog-card-excerpt {
	color: var(--bcr-text-muted);
	font-size: 0.95rem;
	line-height: 1.75;
	margin-bottom: 1.25rem;
}

.bcr-read-more {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--bcr-accent-dark);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: var(--bcr-transition);
	position: relative;
	padding-bottom: 2px;
}

.bcr-read-more::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--bcr-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.bcr-read-more:hover {
	gap: 0.85rem;
}

.bcr-read-more:hover::after {
	transform: scaleX(1);
}

/* ---------- Single Post Styles ---------- */
.bcr-post-cat {
	display: inline-block;
	background: linear-gradient(135deg, var(--bcr-accent) 0%, var(--bcr-accent-dark) 100%);
	color: #fff;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	padding: 0.5rem 1.25rem;
	border-radius: 999px;
	margin-bottom: 1.25rem;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.bcr-post-title {
	font-size: 2.75rem;
	font-weight: 900;
	margin-bottom: 1.25rem;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.bcr-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem;
	color: var(--bcr-text-muted);
	font-size: 0.9rem;
	margin-bottom: 2.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid var(--bcr-border);
}

.bcr-post-meta span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.bcr-post-meta i {
	color: var(--bcr-accent);
	font-size: 1rem;
}

.bcr-post-thumb {
	margin-bottom: 2.5rem;
}

.bcr-post-thumb img {
	border-radius: 24px;
	box-shadow: 0 10px 40px rgba(15, 31, 58, 0.1);
}

.bcr-entry-content {
	font-size: 1.1rem;
	line-height: 2;
}

.bcr-entry-content h2 {
	margin-top: 3.5rem;
	margin-bottom: 1.5rem;
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	padding-bottom: 0.75rem;
	border-bottom: 3px solid var(--bcr-accent-light);
}

.bcr-entry-content h3 {
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	font-weight: 700;
}

.bcr-entry-content p {
	margin-bottom: 1.5rem;
	color: var(--bcr-text);
}

.bcr-entry-content img {
	border-radius: 20px;
	margin: 2.5rem 0;
	box-shadow: 0 8px 30px rgba(15, 31, 58, 0.08);
}

.bcr-entry-content blockquote {
	border-left: 4px solid var(--bcr-accent);
	padding: 1.5rem 2rem;
	margin: 2rem 0;
	background: var(--bcr-accent-light);
	border-radius: 0 16px 16px 0;
	font-style: italic;
	font-size: 1.1rem;
	color: var(--bcr-navy);
}

.bcr-entry-content ul,
.bcr-entry-content ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.bcr-entry-content li {
	margin-bottom: 0.5rem;
}

/* Table of Contents */
.bcr-toc {
	background: linear-gradient(135deg, var(--bcr-bg) 0%, var(--bcr-surface) 100%);
	border: 2px solid var(--bcr-border);
	border-radius: 20px;
	padding: 2rem 2.25rem;
	margin-bottom: 3rem;
	box-shadow: var(--bcr-shadow-sm);
	position: relative;
}

.bcr-toc::before {
	content: '📖';
	position: absolute;
	top: -12px;
	left: 24px;
	font-size: 1.2rem;
	background: var(--bcr-surface);
	padding: 0 0.5rem;
}

.bcr-toc-title {
	font-size: 1.15rem;
	margin-bottom: 1rem;
	font-weight: 800;
	color: var(--bcr-navy);
}

.bcr-toc-list a {
	font-size: 0.95rem;
	color: var(--bcr-text);
	display: block;
	padding: 0.5rem 0;
	transition: var(--bcr-transition);
}

.bcr-toc-list a:hover {
	color: var(--bcr-accent-dark);
	transform: translateX(6px);
}

.bcr-toc-level-3 {
	padding-left: 1.75rem;
	font-size: 0.9rem;
}

/* Post Tags */
.bcr-post-tags {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 2px solid var(--bcr-border);
}

.bcr-tag {
	display: inline-block;
	background: var(--bcr-bg);
	border: 1.5px solid var(--bcr-border);
	padding: 0.45rem 1.15rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	margin: 0 0.5rem 0.5rem 0;
	transition: var(--bcr-transition);
	color: var(--bcr-text);
}

.bcr-tag:hover {
	background: var(--bcr-accent);
	border-color: var(--bcr-accent);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Author Box */
.bcr-author-box {
	background: linear-gradient(135deg, var(--bcr-surface) 0%, var(--bcr-bg) 100%);
	border: 1px solid var(--bcr-border);
	border-radius: 24px;
	padding: 2.5rem;
	margin-top: 3.5rem;
	box-shadow: var(--bcr-shadow-sm);
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.bcr-author-avatar {
	border-radius: 50%;
	border: 3px solid var(--bcr-accent);
	width: 80px;
	height: 80px;
	object-fit: cover;
	flex-shrink: 0;
}

/* Related Posts */
.bcr-related-posts {
	margin-top: 5rem;
	padding-top: 3rem;
	border-top: 2px solid var(--bcr-border);
}

.bcr-related-posts .bcr-section-subtitle {
	font-size: 1.75rem;
	font-weight: 800;
	text-align: left;
	margin-bottom: 2rem;
	color: var(--bcr-navy);
}

/* Pagination */
.bcr-pagination .pagination {
	gap: 0.5rem;
}

.bcr-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--bcr-surface);
	border: 1px solid var(--bcr-border);
	color: var(--bcr-text);
	font-weight: 600;
	font-size: 0.9rem;
	transition: var(--bcr-transition);
}

.bcr-pagination .page-numbers.current {
	background: linear-gradient(135deg, var(--bcr-accent) 0%, var(--bcr-accent-dark) 100%);
	border-color: var(--bcr-accent);
	color: #fff;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.bcr-pagination .page-numbers:hover:not(.current) {
	background: var(--bcr-bg);
	border-color: var(--bcr-accent);
	color: var(--bcr-accent-dark);
	transform: translateY(-2px);
}

.bcr-pagination .page-numbers.next,
.bcr-pagination .page-numbers.prev {
	width: auto;
	padding: 0 1.25rem;
	gap: 0.5rem;
}

/* ---------- Sidebar ---------- */
.bcr-sidebar-box {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: var(--bcr-shadow-sm);
	border: 1px solid rgba(15, 31, 58, 0.04);
}

.bcr-sidebar-title {
	font-size: 1.1rem;
	margin-bottom: 1.25rem;
	font-weight: 700;
	font-family: var(--bcr-font-heading);
}

.bcr-sidebar-search {
	display: flex;
}

.bcr-sidebar-search input {
	/*border-radius: var(--bcr-radius-sm) 0 0 var(--bcr-radius-sm);*/
 	padding: 0.75rem 1rem;
	flex: 1;
}

.bcr-sidebar-search button {
	border: none;
	background: linear-gradient(135deg, var(--bcr-accent) 0%, var(--bcr-accent-dark) 100%);
	color: #fff;
	padding: 0 1.25rem;
	border-radius: 0 var(--bcr-radius-sm) var(--bcr-radius-sm) 0;
	cursor: pointer;
	transition: var(--bcr-transition);
}

.bcr-sidebar-search button:hover {
	background: linear-gradient(135deg, var(--bcr-accent-dark) 0%, #b45309 100%);
}

.bcr-sidebar-categories li a,
.bcr-sidebar-recent li a {
	color: var(--bcr-text);
	display: block;
	padding: 0.5rem 0;
	transition: var(--bcr-transition);
}

.bcr-sidebar-categories li a:hover,
.bcr-sidebar-recent li a:hover {
	color: var(--bcr-accent);
	transform: translateX(4px);
}

.bcr-sidebar-thumb {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: var(--bcr-radius-sm);
}

.bcr-sidebar-newsletter {
	background: linear-gradient(135deg, var(--bcr-navy) 0%, var(--bcr-navy-dark) 100%);
	color: #fff;
}

.bcr-sidebar-newsletter .bcr-sidebar-title {
	color: #fff;
}

/* ---------- Comments ---------- */
.bcr-comments {
	margin-top: 4rem;
}

.bcr-comment-list .comment-body {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	padding: 1.75rem;
	margin-bottom: 1.5rem;
	box-shadow: var(--bcr-shadow-sm);
	border: 1px solid rgba(15, 31, 58, 0.04);
}

/* ---------- 404 Page ---------- */
.bcr-404-icon {
	font-size: 6rem;
	color: var(--bcr-accent);
	margin-bottom: 2rem;
}

/* ---------- Search Results ---------- */
.bcr-results-sidebar {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	padding: 2rem;
	box-shadow: var(--bcr-shadow-sm);
	border: 1px solid rgba(15, 31, 58, 0.04);
}

.bcr-filter-group {
	border-bottom: 1px solid var(--bcr-border);
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
}

.bcr-filter-group:last-child {
	border-bottom: none;
}

.bcr-filter-title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1rem;
	font-family: var(--bcr-font-heading);
}

.bcr-results-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.bcr-car-card {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	box-shadow: var(--bcr-shadow-sm);
	margin-bottom: 2rem;
	padding: 2rem;
	transition: var(--bcr-transition);
	border: 1px solid rgba(15, 31, 58, 0.04);
}

.bcr-car-card:hover {
	box-shadow: var(--bcr-shadow-lg);
	transform: translateY(-4px);
}

.bcr-car-card-img {
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bcr-car-card-img img {
	max-height: 100%;
	object-fit: contain;
}

.bcr-car-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.bcr-badge {
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	background: var(--bcr-bg);
	color: var(--bcr-text-muted);
}

.bcr-badge-success {
	background: #d1fae5;
	color: var(--bcr-green);
}

.bcr-car-name {
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
	font-weight: 700;
}

.bcr-car-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	color: var(--bcr-text-muted);
	font-size: 0.9rem;
	margin: 1rem 0;
}

.bcr-car-specs span {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.bcr-supplier-block {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 1rem 0;
}

.bcr-supplier-logo {
	height: 28px;
}

.bcr-car-price-col {
	text-align: right;
}

.bcr-car-price {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--bcr-navy);
	font-family: var(--bcr-font-heading);
}

.bcr-car-price-sub {
	font-size: 0.85rem;
	color: var(--bcr-text-muted);
}

.bcr-car-features-toggle {
	font-size: 0.9rem;
	font-weight: 700;
	cursor: pointer;
	color: var(--bcr-accent-dark);
}

.bcr-skeleton {
	background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 37%, #f0f0f0 63%);
	background-size: 400% 100%;
	animation: bcr-skeleton 1.5s ease infinite;
	border-radius: var(--bcr-radius);
	height: 200px;
	margin-bottom: 2rem;
}

@keyframes bcr-skeleton {
	0% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}

/* ---------- Vehicle Details ---------- */
.bcr-vd-gallery-main {
	border-radius: var(--bcr-radius);
	overflow: hidden;
	height: 420px;
	box-shadow: var(--bcr-shadow);
}

.bcr-vd-gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bcr-vd-gallery-thumbs {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.75rem;
	overflow-x: auto;
}

.bcr-vd-gallery-thumbs img {
	width: 90px;
	height: 65px;
	object-fit: cover;
	border-radius: var(--bcr-radius-sm);
	cursor: pointer;
	opacity: 0.6;
	transition: var(--bcr-transition);
	border: 2px solid transparent;
}

.bcr-vd-gallery-thumbs img.active {
	opacity: 1;
	border-color: var(--bcr-accent);
}

.bcr-vd-gallery-thumbs img:hover {
	opacity: 1;
}

.bcr-vd-box {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	padding: 2rem;
	box-shadow: var(--bcr-shadow-sm);
	margin-bottom: 2rem;
	border: 1px solid rgba(15, 31, 58, 0.04);
}

.bcr-vd-spec-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 1.25rem;
}

.bcr-vd-spec-item {
	text-align: center;
	background: var(--bcr-bg);
	border-radius: var(--bcr-radius-sm);
	padding: 1.25rem 0.75rem;
	transition: var(--bcr-transition);
}

.bcr-vd-spec-item:hover {
	background: var(--bcr-accent-light);
	transform: translateY(-2px);
}

.bcr-vd-spec-item i {
	font-size: 1.5rem;
	color: var(--bcr-accent-dark);
	margin-bottom: 0.5rem;
}

.bcr-vd-feature-list {
	columns: 2;
	list-style: none;
	padding: 0;
}

.bcr-vd-feature-list li {
	margin-bottom: 0.75rem;
	padding-left: 1.5rem;
	position: relative;
}

.bcr-vd-feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--bcr-green);
	font-weight: 700;
}

.bcr-vd-sticky-summary {
	position: sticky;
	top: 100px;
}

.bcr-vd-map {
	border-radius: var(--bcr-radius);
	overflow: hidden;
	height: 300px;
	box-shadow: var(--bcr-shadow-sm);
}

.bcr-vd-package-card {
	border: 2px solid var(--bcr-border);
	border-radius: var(--bcr-radius);
	padding: 1.5rem;
	margin-bottom: 1.25rem;
	cursor: pointer;
	transition: var(--bcr-transition);
}

.bcr-vd-package-card:hover {
	border-color: var(--bcr-accent);
	transform: translateX(4px);
}

.bcr-vd-package-card.active {
	border-color: var(--bcr-accent);
	background: var(--bcr-accent-light);
	box-shadow: var(--bcr-shadow);
}

/* ---------- Utilities ---------- */
.bcr-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 0;
}

.bcr-alert-empty {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	padding: 4rem;
	text-align: center;
	box-shadow: var(--bcr-shadow-sm);
	border: 2px dashed var(--bcr-border);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 991.98px) {
	.bcr-search-wrap {
		margin-top: -4rem;
	}
	.bcr-hero-banner {
		min-height: 550px;
	}
	.bcr-hero-inner {
		padding: 6rem 0 9rem;
	}
	.bcr-nav-menu {
		padding: 1rem 0;
	}
	.bcr-vd-sticky-summary {
		position: static;
	}
	.bcr-header-links {
		gap: 1.25rem;
	}
	.bcr-header-link {
		padding: 0.5rem 0.75rem;
		font-size: 0.9rem;
	}
	.navbar-collapse {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bcr-surface);
		padding: 1.25rem;
		box-shadow: var(--bcr-shadow-lg);
		border-radius: 0 0 var(--bcr-radius-sm) var(--bcr-radius-sm);
		margin-top: 0.5rem;
	}
	.bcr-header-links {
		flex-direction: column;
		gap: 0.75rem;
		width: 100%;
	}
	.bcr-header-link {
		display: block;
		width: 100%;
		text-align: center;
	}
	.bcr-section {
		padding: 4rem 0;
	}
	.bcr-faq {
		padding: 5rem 0;
	}
}

@media (max-width: 767.98px) {
	.bcr-search-form {
		padding: 1.5rem;
	}
	.bcr-hero-banner {
		min-height: 500px;
	}
	.bcr-hero-inner {
		padding: 5rem 0 7rem;
	}
	.bcr-hero-actions {
		flex-direction: column;
	}
	.bcr-hero-actions .btn {
		width: 100%;
	}
	.bcr-app-promo,
	.bcr-cta-banner {
		padding: 2.5rem;
		text-align: center;
	}
	.bcr-car-price-col {
		text-align: left;
		margin-top: 1.25rem;
	}
	.bcr-vd-feature-list {
		columns: 1;
	}
	.bcr-footer {
		padding: 3rem 0 0;
	}
	.bcr-footer-bottom {
		margin-top: 2rem;
	}
	.bcr-post-title {
		font-size: 2rem;
	}
	.bcr-cta-banner h2 {
		font-size: 1.75rem;
	}
}

/* ---------- Dark Mode Support ---------- */
@media (prefers-color-scheme: dark) {
	:root {
		--bcr-bg: #0c0c0c;
		--bcr-surface: #1a1a1a;
		--bcr-text: #e5e5e5;
		--bcr-text-muted: #a3a3a3;
		--bcr-border: #2a2a2a;
	}

	body {
		background: var(--bcr-bg);
		color: var(--bcr-text);
	}

	.bcr-header {
		background: rgba(26, 26, 26, 0.95);
		border-bottom-color: rgba(255, 255, 255, 0.06);
	}

	.bcr-logo-text {
		color: #fff;
	}
}

/* ==========================================================================
   Premium 2026 UI System
   Scope: visual design only. Preserves existing WordPress/PHP/API flow.
   ========================================================================== */

:root {
	--bcr-primary: #FDA702;
	--bcr-primary-dark: #d88900;
	--bcr-primary-soft: #fff4d8;
	--bcr-secondary: #111827;
	--bcr-bg: #F8FAFC;
	--bcr-surface: #FFFFFF;
	--bcr-text: #1F2937;
	--bcr-text-muted: #64748B;
	--bcr-border: rgba(17, 24, 39, 0.10);
	--bcr-ring: rgba(253, 167, 2, 0.28);
	--bcr-radius-sm: 12px;
	--bcr-radius: 18px;
	--bcr-radius-lg: 24px;
	--bcr-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
	--bcr-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
	--bcr-shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.16);
	--bcr-gradient: linear-gradient(135deg, #FDA702 0%, #ffcf68 100%);
	--bcr-dark-gradient: linear-gradient(135deg, #111827 0%, #0B1120 100%);
	--bcr-container: 1180px;
	color-scheme: light;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	background:
		radial-gradient(circle at top left, rgba(253, 167, 2, 0.10), transparent 32rem),
		var(--bcr-bg);
	color: var(--bcr-text);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.65;
}

.container {
	max-width: var(--bcr-container);
}

a {
	color: var(--bcr-secondary);
	transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

a:hover {
	color: var(--bcr-primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
.bcr-logo-text,
.bcr-section-title,
.bcr-hero-title {
	color: var(--bcr-secondary);
	font-family: "Plus Jakarta Sans", "Inter", sans-serif;
	letter-spacing: -0.035em;
}

p,
.text-muted {
	color: var(--bcr-text-muted) !important;
}

::selection {
	background: var(--bcr-primary);
	color: var(--bcr-secondary);
}

:focus-visible {
	outline: 3px solid var(--bcr-ring);
	outline-offset: 3px;
	border-radius: 10px;
}

.bcr-section {
	padding: clamp(40px, 5vw, 72px) 0;
	position: relative;
}

.bcr-section-alt {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.96)),
		radial-gradient(circle at 85% 20%, rgba(253, 167, 2, 0.10), transparent 24rem);
}

.bcr-section-header {
	max-width: 760px;
	margin: 0 auto 28px;
	text-align: center;
}

.bcr-section-eyebrow,
.bcr-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	margin-bottom: 10px;
	padding: 5px 10px;
	border: 1px solid rgba(253, 167, 2, 0.34);
	border-radius: 999px;
	background: rgba(253, 167, 2, 0.12);
	color: #8a5900;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}
.bcr-search-microcopy
{
    color: white !important;
}
.bcr-section-title {
	margin-bottom: 8px;
	font-size: clamp(1.4rem, 3.5vw, 2rem);
	font-weight: 850;
	line-height: 1.1;
	color: black !important;
}

.bcr-section-subtitle {
	max-width: 620px;
	margin: 0 auto;
	font-size: 0.85rem;
}

.btn,
button,
.form-control,
.form-select {
	border-radius: var(--bcr-radius-sm);
}

.bcr-btn-accent,
.btn.bcr-btn-accent {
	position: relative;
	isolation: isolate;
	border: 0;
	background: var(--bcr-gradient);
	box-shadow: 0 12px 28px rgba(253, 167, 2, 0.32);
	color: #111827 !important;
	font-weight: 800;
	letter-spacing: -0.01em;
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.bcr-btn-accent:hover,
.bcr-btn-accent:focus {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(253, 167, 2, 0.42);
	filter: saturate(1.06);
}

.bcr-btn-outline,
.btn.bcr-btn-outline {
	border: 1px solid rgba(17, 24, 39, 0.14);
	background: rgba(255, 255, 255, 0.78);
	color: var(--bcr-secondary);
	font-weight: 800;
	box-shadow: var(--bcr-shadow-xs);
}

.bcr-btn-outline:hover {
	border-color: rgba(253, 167, 2, 0.55);
	background: var(--bcr-primary-soft);
	color: var(--bcr-secondary);
	transform: translateY(-2px);
}

.bcr-btn-white {
	border: 0;
	background: #fff;
	color: var(--bcr-secondary) !important;
	font-weight: 850;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.form-label {
	margin-bottom: 4px;
	color: var(--bcr-secondary);
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.form-control,
.form-select {
	min-height: 38px;
	border: 1px solid var(--bcr-border);
	background-color: #fff;
	color: var(--bcr-secondary);
	box-shadow: var(--bcr-shadow-xs);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	font-size: 0.85rem;
	padding: 0.45rem 0.75rem;
}

.form-control:hover,
.form-select:hover {
	border-color: rgba(17, 24, 39, 0.20);
}

.form-control:focus,
.form-select:focus {
	border-color: var(--bcr-primary);
	box-shadow: 0 0 0 4px var(--bcr-ring);
}

.form-check-input {
	border-color: rgba(17, 24, 39, 0.24);
}

.form-check-input:checked {
	border-color: var(--bcr-primary);
	background-color: var(--bcr-primary);
}

/* Header */
.bcr-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	border-bottom: 1px solid transparent;
	background: white;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
@media only screen and (max-width: 576px) {
   .bcr-logo img {
	max-height: 40px;
	width: auto;
}
}
.bcr-header.is-scrolled,
body:not(.home) .bcr-header {
	border-bottom-color: rgba(17, 24, 39, 0.08);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.bcr-navbar {
	padding: 14px 0;
}

.bcr-logo-text {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--bcr-secondary);
	font-weight: 900;
	text-decoration: none;
}

.bcr-logo-text i {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 13px;
	background: var(--bcr-gradient);
	color: var(--bcr-secondary);
}

.bcr-header-links {
	align-items: center;
	gap: 4px;
}

.bcr-header-link {
	position: relative;
	padding: 10px 14px !important;
	border-radius: 999px;
	color: rgba(17, 24, 39, 0.80) !important;
	font-weight: 750;
}

.bcr-header-link:hover {
	background: rgba(253, 167, 2, 0.12);
	color: var(--bcr-secondary) !important;
}

.bcr-header-cta {
	padding: 10px 18px;
}

.navbar-toggler {
	border: 1px solid var(--bcr-border);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--bcr-shadow-xs);
}

.bcr-page-header {
	padding: 20px 0;
	background: rgba(255, 255, 255, 0.74);
	border-bottom: 1px solid var(--bcr-border);
}

.bcr-breadcrumbs {
	padding: 10px 14px;
	border: 1px solid var(--bcr-border);
	border-radius: 999px;
	background: #fff;
	box-shadow: var(--bcr-shadow-xs);
}

.breadcrumb {
	font-size: 0.9rem;
}

/* Hero and Search */
.bcr-hero {
	margin-top: -74px;
	background: #fff;
}

.bcr-hero-banner {
	min-height: clamp(480px, 65vh, 600px);
	background-position: center;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*.bcr-hero-banner::before {*/
/*	content: "";*/
/*	position: absolute;*/
/*	inset: 0;*/
/*	background:*/
/*		radial-gradient(circle at 76% 20%, rgba(253, 167, 2, 0.35), transparent 26rem),*/
/*		linear-gradient(110deg, rgba(11, 17, 32, 0.92) 0%, rgba(17, 24, 39, 0.62) 48%, rgba(17, 24, 39, 0.24) 100%);*/
/*	z-index: 1;*/
/*}*/

.bcr-hero-overlay {
	display: none;
}

.bcr-hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: clamp(480px, 65vh, 600px);
	padding-top: 74px;
	padding-bottom: 120px;
}

.bcr-hero-content {
	max-width: 760px;
	color: #fff;
	margin-left: 0;
}

.bcr-hero-content .bcr-hero-eyebrow {
	display: none;
}

.bcr-hero-title {
	color: #fff;
	font-size: clamp(1.8rem, 4.5vw, 3rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin-bottom: 0.75rem;
}

.bcr-hero-subtitle {
	max-width: 650px;
	color: rgba(255, 255, 255, 0.82) !important;
	font-size: clamp(0.85rem, 1.5vw, 1rem);
	line-height: 1.6;
	margin-bottom: 0;
}

.bcr-hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 16px;
}

.bcr-hero-trust span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.10);
	color: rgba(255, 255, 255, 0.90);
	font-size: 0.75rem;
	font-weight: 700;
	backdrop-filter: blur(14px);
}

.bcr-hero-trust i {
	color: var(--bcr-primary);
}

.bcr-search-wrap {
	position: relative;
	z-index: 4;
	margin-top: -100px;
	padding-bottom: 28px;
}

.bcr-search-form {
	position: relative;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: var(--bcr-radius-lg);
	background: rgba(255, 255, 255, 0.92);
	box-shadow:0 0px 61px rgba(15, 31, 58, 0.15), 0 10px 20px rgba(15, 31, 58, 0.08);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
}

.bcr-search-form::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		linear-gradient(135deg, rgba(253, 167, 2, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82));
	pointer-events: none;
	z-index: -1;
}

.bcr-search-pickup-field {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 7px 10px;
	font-size: 0.82rem;
	border: 1px solid rgba(253, 167, 2, 0.34);
	border-radius: var(--bcr-radius-sm);
	background: var(--bcr-primary-soft);
	color: var(--bcr-secondary);
	font-weight: 850;
	box-shadow: var(--bcr-shadow-xs);
}

.bcr-search-pickup-field i {
	color: var(--bcr-primary-dark);
}

.bcr-search-submit {
	min-height: 36px;
	font-size: 0.82rem;
	padding: 0.4rem 1rem;
}

.bcr-search-form-check {
	color: var(--bcr-text-muted);
	font-weight: 650;
}

/* Trust/brand strip */
.bcr-brands-section {
	background: #fff !important;
	overflow: hidden;
}

.brand-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 8px 0 18px;
	background: #fff !important;
}

.brand-slider::before,
.brand-slider::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 72px;
	pointer-events: none;
}

.brand-slider::before {
	left: 0;
	background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.brand-slider::after {
	right: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff);
}

.brand-track {
	display: flex;
	align-items: center;
	gap: 18px;
	width: max-content;
	animation: brandMove 24s linear infinite;
}

.brand-track:hover {
	animation-play-state: paused;
}

.brand-logo {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	height: 64px;
	min-width: 148px;
	border: 1px solid rgba(17, 24, 39, 0.07);
	border-radius: 18px;
	background: rgba(248, 250, 252, 0.85);
	box-shadow: var(--bcr-shadow-xs);
}

.brand-logo img {
	max-height: 34px;
	max-width: 120px;
	width: auto;
	height: auto;
	opacity: 0.58;
	/*filter: grayscale(1);*/
	transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.brand-logo-fallback {
	display: none;
	align-items: center;
	justify-content: center;
	color: var(--bcr-secondary);
	font-family: "Plus Jakarta Sans", "Inter", sans-serif;
	font-size: 1.05rem;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.brand-logo:hover img {
	opacity: 1;
	filter: none;
	transform: scale(1.06);
}

@keyframes brandMove {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Cards */
.bcr-feature-card,
.bcr-location-card,
.bcr-category-card,
.bcr-deal-card,
.bcr-testimonial-card,
.bcr-blog-card,
.bcr-vd-box,
.bcr-results-sidebar,
.bcr-results-toolbar,
.bcr-alert-empty,
.bcr-process-card {
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: var(--bcr-radius);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--bcr-shadow);
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.bcr-feature-card:hover,
.bcr-location-card:hover,
.bcr-category-card:hover,
.bcr-deal-card:hover,
.bcr-testimonial-card:hover,
.bcr-blog-card:hover,
.bcr-process-card:hover {
	transform: translateY(-6px);
	border-color: rgba(253, 167, 2, 0.30);
	box-shadow: var(--bcr-shadow-lg);
}

.bcr-feature-card {
	height: 100%;
	padding: 20px;
}

.bcr-feature-icon,
.bcr-category-icon,
.bcr-process-icon,
.bcr-stat-icon {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 12px;
	border-radius: 14px;
	background: var(--bcr-primary-soft);
	color: var(--bcr-primary-dark);
	font-size: 1.15rem;
}

.bcr-feature-card h3,
.bcr-process-card h3 {
	margin-bottom: 6px;
	color: var(--bcr-secondary);
	font-size: 0.95rem;
	font-weight: 850;
}

.bcr-stats-section {
	    background: radial-gradient(circle at 15% 20%, rgb(253 167 2 / 56%), #9999993b 22rem), var(--bcr-dark-gradient);	
}

.bcr-stat-item {
	height: 100%;
	padding: 18px 14px;
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.07);
	text-align: center;
	backdrop-filter: blur(18px);
}

.bcr-stat-icon {
	margin-left: auto;
	margin-right: auto;
	background: rgba(253, 167, 2, 0.16);
	color: var(--bcr-primary);
}

.bcr-stat-number {
	color: #fff;
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 900;
	letter-spacing: -0.03em;
}

.bcr-stat-label {
	color: rgba(255, 255, 255, 0.70);
	font-weight: 700;
	font-size: 0.8rem;
}

.bcr-location-card {
	display: block;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}

.bcr-location-card-img,
.bcr-deal-img {
	position: relative;
	min-height: 160px;
	background-color: #E2E8F0;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.bcr-location-card-img::after,
.bcr-deal-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(17, 24, 39, 0.56));
}

.bcr-location-card-body,
.bcr-deal-body,
.bcr-blog-card-body {
	padding: 16px;
}

.bcr-location-card-title {
	color: var(--bcr-secondary);
	font-size: 0.9rem;
	font-weight: 850;
}

.bcr-location-card-sub {
	color: var(--bcr-text-muted);
	font-weight: 650;
}

.bcr-category-card {
	height: 100%;
	padding: 20px 12px;
	text-align: center;
}

.bcr-category-card .fw-bold {
	color: var(--bcr-secondary) !important;
	font-size: 0.88rem;
}

.bcr-deal-card {
	overflow: hidden;
	height: 100%;
}

.bcr-deal-badge,
.bcr-badge,
.bcr-post-cat,
.bcr-blog-card-cat {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid rgba(253, 167, 2, 0.34);
	border-radius: 999px;
	background: var(--bcr-primary-soft);
	color: #805100;
	font-size: 0.75rem;
	font-weight: 850;
}

.bcr-deal-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 7px 11px;
}

.bcr-deal-price,
.bcr-car-price {
	color: var(--bcr-secondary);
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: -0.04em;
}

/* Process timeline */
.bcr-process-section {
	background:
		radial-gradient(circle at 20% 10%, rgba(253, 167, 2, 0.13), transparent 25rem),
		#fff;
}

.bcr-process-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.bcr-process-timeline::before {
	content: "";
	position: absolute;
	top: 44px;
	left: 12%;
	right: 12%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(253, 167, 2, 0.75), transparent);
}

.bcr-process-card {
	position: relative;
	padding: 22px;
	overflow: hidden;
}

.bcr-process-step {
	position: absolute;
	top: 12px;
	right: 16px;
	color: rgba(17, 24, 39, 0.08);
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

/* Testimonials, FAQ, blog */
.bcr-testimonial-card {
	position: relative;
	height: 100%;
	padding: 20px;
	overflow: hidden;
}

.bcr-testimonial-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: var(--bcr-gradient);
}

.bcr-testimonial-quote {
	color: rgba(253, 167, 2, 0.22);
	font-size: 2.5rem;
	line-height: 1;
}

.bcr-testimonial-author {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--bcr-border);
}

.bcr-faq-wrapper {
	padding: 8px;
	border: 1px solid var(--bcr-border);
	border-radius: var(--bcr-radius-lg);
	background: #fff;
	box-shadow: var(--bcr-shadow);
}

.bcr-faq-item {
	border: 0;
	border-bottom: 1px solid rgba(17, 24, 39, 0.08);
	background: transparent;
}

.bcr-faq-item:last-child {
	border-bottom: 0;
}

.bcr-faq .accordion-button {
	padding: 16px 14px;
	font-size: 0.9rem;
	border: 0;
	background: transparent;
	color: var(--bcr-secondary);
	font-weight: 850;
	box-shadow: none;
}

.bcr-faq .accordion-button:not(.collapsed) {
	background: var(--bcr-primary-soft);
	color: var(--bcr-secondary);
	border-radius: 16px;
}

.bcr-faq .accordion-body {
	padding: 0 14px 16px;
	font-size: 0.85rem;
}

.bcr-blog-card {
	overflow: hidden;
}

.bcr-blog-card-thumb {
	position: relative;
	display: block;
	/*aspect-ratio: 16 / 10;*/
	overflow: hidden;
	background: #E2E8F0;
}

.bcr-blog-card-thumb img,
.bcr-blog-card-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.bcr-blog-card:hover .bcr-blog-card-thumb img {
	transform: scale(1.04);
}

.bcr-blog-card-cat {
	position: absolute;
	left: 14px;
	top: 14px;
	padding: 7px 11px;
}

.bcr-blog-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 10px;
	color: var(--bcr-text-muted);
	font-size: 0.82rem;
	font-weight: 700;
}

.bcr-blog-card-title {
	margin-bottom: 10px;
	font-size: 1.25rem;
	line-height: 1.25;
}

.bcr-blog-card-title a,
.bcr-read-more {
	color: var(--bcr-secondary);
	text-decoration: none;
}

.bcr-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 850;
}

.bcr-read-more:hover i {
	transform: translateX(3px);
}

/* Search results and vehicle details */
.bcr-search-results-main,
.bcr-vehicle-details-main,
.bcr-contact-page {
	padding-top: 48px !important;
	padding-bottom: 80px !important;
	background:
		radial-gradient(circle at 12% 0%, rgba(253, 167, 2, 0.10), transparent 26rem),
		var(--bcr-bg);
}

.bcr-results-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 18px;
	margin-bottom: 18px;
}

#bcr-search-summary {
	justify-content: flex-start;
}

#bcr-search-summary span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--bcr-primary-soft);
	color: var(--bcr-secondary);
	font-weight: 750;
}

.bcr-results-sidebar {
	position: sticky;
	top: 104px;
	padding: 22px;
}

.bcr-filter-title {
	color: var(--bcr-secondary);
	font-weight: 900;
}

.bcr-filter-group {
	padding: 18px 0;
	border-top: 1px solid var(--bcr-border);
}

.bcr-car-card {
	margin-bottom: 18px;
	padding: 20px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: var(--bcr-radius-lg);
	background: #fff;
	box-shadow: var(--bcr-shadow);
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.bcr-car-card:hover {
	transform: translateY(-4px);
	border-color: rgba(253, 167, 2, 0.30);
	box-shadow: var(--bcr-shadow-lg);
}

.bcr-car-card-img {
	display: grid;
	place-items: center;
	min-height: 118px;
	border-radius: 18px;
	background: linear-gradient(145deg, #F8FAFC, #EEF2F7);
}

.bcr-car-card-img img {
	max-width: 100%;
	max-height: 110px;
	object-fit: contain;
}

.bcr-car-badges,
.bcr-car-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bcr-car-badges {
	margin-bottom: 10px;
}

.bcr-badge {
	padding: 6px 10px;
}

.bcr-badge-success {
	border-color: rgba(34, 197, 94, 0.22);
	background: rgba(34, 197, 94, 0.10);
	color: #166534;
}

.bcr-car-name {
	margin-bottom: 8px;
	color: var(--bcr-secondary);
	font-size: 1.35rem;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.bcr-supplier-block {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bcr-supplier-logo {
	max-width: 76px;
	max-height: 28px;
	object-fit: contain;
}

.bcr-car-specs {
	margin: 12px 0;
	color: var(--bcr-text-muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.bcr-car-specs span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 10px;
	border-radius: 999px;
	background: #F8FAFC;
}

.bcr-car-price-col {
	text-align: right;
}

.bcr-car-price-sub {
	color: var(--bcr-text-muted);
	font-size: 0.9rem;
}

.bcr-skeleton {
	min-height: 156px;
	margin-bottom: 18px;
	border-radius: var(--bcr-radius-lg);
	background: linear-gradient(90deg, #EEF2F7 0%, #F8FAFC 50%, #EEF2F7 100%);
	background-size: 220% 100%;
	animation: bcrShimmer 1.25s linear infinite;
}

@keyframes bcrShimmer {
	to { background-position: -220% 0; }
}

.bcr-alert-empty {
	padding: 40px 24px;
	text-align: center;
}

.bcr-loader {
	display: grid;
	place-items: center;
	min-height: 240px;
}

.bcr-vd-box {
	margin-bottom: 18px;
	padding: 24px;
}

.bcr-vd-gallery-main {
	overflow: hidden;
	border-radius: var(--bcr-radius-lg);
	background: #fff;
	box-shadow: var(--bcr-shadow);
}

.bcr-vd-gallery-main img {
	width: 100%;
	max-height: 460px;
	object-fit: cover;
}

.bcr-vd-gallery-thumbs {
	display: flex;
	gap: 10px;
	margin: 14px 0 18px;
	overflow-x: auto;
}

.bcr-vd-gallery-thumbs img {
	width: 86px;
	height: 64px;
	border: 2px solid transparent;
	border-radius: 14px;
	object-fit: cover;
	cursor: pointer;
	opacity: 0.72;
}

.bcr-vd-gallery-thumbs img.active {
	border-color: var(--bcr-primary);
	opacity: 1;
}

.bcr-vd-spec-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.bcr-vd-spec-item {
	padding: 16px;
	border-radius: 16px;
	background: #F8FAFC;
	text-align: center;
}

.bcr-vd-spec-item i {
	color: var(--bcr-primary-dark);
	font-size: 1.35rem;
}

.bcr-vd-feature-list {
	display: grid;
	gap: 10px;
	padding: 0;
	list-style: none;
}

.bcr-vd-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.bcr-vd-feature-list .bi-check-circle-fill {
	color: #16a34a;
}

.bcr-vd-package-card {
	padding: 16px;
	border: 1px solid var(--bcr-border);
	border-radius: 16px;
	background: #F8FAFC;
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.bcr-vd-package-card:hover,
.bcr-vd-package-card.active {
	border-color: var(--bcr-primary);
	background: var(--bcr-primary-soft);
	transform: translateY(-2px);
}

.bcr-vd-sticky-summary {
	position: sticky;
	top: 104px;
}

.bcr-vd-map {
	overflow: hidden;
	height: 320px;
	border-radius: 18px;
}

/* CTA and footer */
.bcr-cta-banner {
	position: relative;
	overflow: hidden;
	padding: clamp(42px, 7vw, 78px) 24px;
	border-radius: 28px;
	background:
		radial-gradient(circle at 18% 18%, rgba(253, 167, 2, 0.40), transparent 22rem),
		var(--bcr-dark-gradient);
	box-shadow: var(--bcr-shadow-lg);
}

.bcr-cta-banner::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -100px;
	width: 280px;
	height: 280px;
	border-radius: 999px;
	background: rgba(253, 167, 2, 0.22);
	filter: blur(4px);
}

.bcr-cta-banner > * {
	position: relative;
	z-index: 1;
}

.bcr-cta-banner h2 {
	font-size: clamp(1.4rem, 3.5vw, 2rem);
	font-weight: 900;
	letter-spacing: -0.06em;
}

.bcr-footer {
	padding-top: 0;
	background:
		radial-gradient(circle at 15% 0%, rgba(253, 167, 2, 0.18), transparent 26rem),
		linear-gradient(180deg, #111827 0%, #070B14 100%);
	color: #fff;
}

.bcr-newsletter-strip {
	padding: 36px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(255, 255, 255, 0.04);
}

.bcr-newsletter-strip h3,
.bcr-footer-heading {
	color: #fff;
	font-size: 0.9rem;
}

.bcr-newsletter-form .form-control {
	border-color: rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.09);
	color: #fff;
}

.bcr-newsletter-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.bcr-footer .bcr-logo-text,
.bcr-logo-text-light {
	color: #fff;
}

.bcr-footer-links a,
.bcr-footer-contact a,
.bcr-legal-links a {
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
	font-size: 0.82rem;
}

.bcr-footer-links a:hover,
.bcr-footer-contact a:hover,
.bcr-legal-links a:hover {
	color: var(--bcr-primary);
}

.bcr-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.bcr-social-icon {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.07);
	color: #fff !important;
}

.bcr-social-icon:hover {
	background: var(--bcr-primary);
	color: var(--bcr-secondary) !important;
	transform: translateY(-2px);
}

.bcr-footer-bottom {
	margin-top: 0;
	padding: 14px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(0, 0, 0, 0.18);
}

.bcr-back-to-top {
	right: 22px;
	bottom: 22px;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 16px;
	background: var(--bcr-gradient);
	color: var(--bcr-secondary);
	box-shadow: 0 16px 34px rgba(253, 167, 2, 0.34);
}

/* Content pages, tables, pagination, comments */
.bcr-page-title,
.bcr-post-title {
	color: var(--bcr-secondary);
	font-weight: 900;
	letter-spacing: -0.055em;
}

.bcr-entry-content,
.bcr-post-content,
.bcr-sidebar-widget,
.comments-area,
table {
	border-radius: var(--bcr-radius);
}

.bcr-sidebar-widget,
.comments-area {
	border: 1px solid var(--bcr-border);
	background: #fff;
	box-shadow: var(--bcr-shadow);
}

table {
	overflow: hidden;
	border: 1px solid var(--bcr-border);
	background: #fff;
	box-shadow: var(--bcr-shadow-xs);
}

th {
	background: #F8FAFC;
	color: var(--bcr-secondary);
}

.bcr-pagination .page-numbers,
.pagination .page-link {
	border: 1px solid var(--bcr-border);
	border-radius: 12px !important;
	background: #fff;
	color: var(--bcr-secondary);
	font-weight: 800;
}

.bcr-pagination .current,
.pagination .active .page-link {
	border-color: var(--bcr-primary);
	background: var(--bcr-primary);
	color: var(--bcr-secondary);
}

.alert {
	border: 0;
	border-radius: var(--bcr-radius);
	box-shadow: var(--bcr-shadow-xs);
}

/* Motion */
.bcr-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.bcr-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Responsive */
@media (max-width: 991.98px) {
	.bcr-header {
		background: rgba(255, 255, 255, 0.94);
	}

	.bcr-navbar .navbar-collapse {
		margin-top: 14px;
		padding: 14px;
		border: 1px solid var(--bcr-border);
		border-radius: 18px;
		background: #fff;
		box-shadow: var(--bcr-shadow);
	}

	.bcr-header-links {
		align-items: stretch;
	}

	.bcr-header-cta {
		width: 100%;
		margin-top: 8px;
	}

	.bcr-hero {
		margin-top: -70px;
	}

	.bcr-hero-inner {
		align-items: flex-end;
		/*padding-bottom: 150px;*/
	}

	.bcr-search-wrap {
		margin-top: -100px;
	}

.bcr-search-form {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius-lg);
	box-shadow: var(--bcr-shadow-xl);
	padding: 1.5rem;
	border: 1px solid rgba(15, 31, 58, 0.06);
}

	.bcr-process-timeline::before {
		display: none;
	}

	.bcr-vd-spec-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bcr-results-sidebar {
		position: static;
		margin-bottom: 18px;
	}
}

@media (max-width: 767.98px) {
	.bcr-section {
		padding: 56px 0;
	}

	.bcr-hero-banner,
	.bcr-hero-inner {
		/*min-height: 720px;*/
	}

	.bcr-hero-title {
		font-size: clamp(2rem, 10vw, 4.25rem);
	}

	.bcr-hero-trust {
		display: grid;
	}

	.bcr-search-wrap {
		padding-left: 12px;
		padding-right: 12px;
	}

	.bcr-search-form {
		border-radius: 20px;
	}

	.bcr-location-card-img,
	.bcr-deal-img {
		min-height: 180px;
	}

	.bcr-car-price-col {
		text-align: left;
	}

	.bcr-results-toolbar {
		align-items: stretch;
	}

	.bcr-results-toolbar > * {
		width: 100%;
	}

	.bcr-newsletter-form {
		flex-direction: column;
	}

	.bcr-vd-spec-grid {
		grid-template-columns: 1fr;
	}

	.bcr-footer-bottom .container {
		justify-content: center !important;
		text-align: center;
	}
}

/* ==========================================================================
   Premium single blog + comments polish
   ========================================================================== */

.bcr-single-post {
	background:
		radial-gradient(circle at 8% 0%, rgba(253, 167, 2, 0.11), transparent 28rem),
		linear-gradient(180deg, #fff 0%, var(--bcr-bg) 38%);
}

.bcr-single-article {
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--bcr-shadow);
}

.bcr-single-article .bcr-post-cat {
	margin-bottom: 18px;
	padding: 8px 12px;
	text-decoration: none;
}

.bcr-post-title {
	max-width: 920px;
	margin: 0 0 14px;
	color: var(--bcr-secondary);
	font-size: clamp(2.35rem, 5vw, 4.45rem);
	font-weight: 920;
	line-height: 1.02;
	letter-spacing: -0.075em;
}

.bcr-post-excerpt {
	max-width: 760px;
	margin: 0 0 22px;
	color: #475569 !important;
	font-size: clamp(1.08rem, 2vw, 1.28rem);
	line-height: 1.7;
}

.bcr-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 28px;
	color: var(--bcr-text-muted);
}

.bcr-post-meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 999px;
	background: #F8FAFC;
	font-size: 0.9rem;
	font-weight: 750;
}

.bcr-post-meta i {
	color: var(--bcr-primary-dark);
}

.bcr-post-thumb {
	overflow: hidden;
	margin: 0 0 32px;
	border-radius: 24px;
	background: #E2E8F0;
	box-shadow: var(--bcr-shadow);
}

.bcr-post-thumb img {
	display: block;
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.bcr-toc {
	margin: 0 0 34px;
	padding: 22px;
	border: 1px solid rgba(253, 167, 2, 0.22);
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(253, 167, 2, 0.10), rgba(255, 255, 255, 0.92)),
		#fff;
	box-shadow: var(--bcr-shadow-xs);
}

.bcr-toc-title,
.bcr-toc h2,
.bcr-toc h3 {
	margin-bottom: 12px;
	color: var(--bcr-secondary);
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.bcr-toc ul,
.bcr-toc ol {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 18px;
}

.bcr-toc a {
	color: #334155;
	font-weight: 700;
	text-decoration: none;
}

.bcr-toc a:hover {
	color: var(--bcr-primary-dark);
}

.bcr-entry-content {
	color: var(--bcr-text);
	font-size: 1.06rem;
	line-height: 1.86;
}

.bcr-entry-content > *:first-child {
	margin-top: 0;
}

.bcr-entry-content p {
	margin-bottom: 1.35em;
	color: #334155 !important;
}

.bcr-entry-content h2,
.bcr-entry-content h3,
.bcr-entry-content h4 {
	margin: 1.55em 0 0.65em;
	color: var(--bcr-secondary);
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: -0.045em;
}

.bcr-entry-content h2 {
	font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.bcr-entry-content h3 {
	font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.bcr-entry-content ul,
.bcr-entry-content ol {
	margin: 0 0 1.4em;
	padding-left: 1.25rem;
}

.bcr-entry-content li {
	margin-bottom: 0.55em;
	padding-left: 0.15rem;
}

.bcr-entry-content blockquote {
	position: relative;
	margin: 34px 0;
	padding: 24px 26px 24px 30px;
	border-left: 5px solid var(--bcr-primary);
	border-radius: 0 22px 22px 0;
	background: var(--bcr-primary-soft);
	color: var(--bcr-secondary);
	font-size: 1.12rem;
	font-weight: 700;
	line-height: 1.7;
}

.bcr-entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: var(--bcr-shadow-xs);
}

.bcr-entry-content a {
	color: #9A6500;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: rgba(253, 167, 2, 0.45);
	text-underline-offset: 4px;
}

.bcr-entry-content table {
	display: block;
	width: 100%;
	overflow-x: auto;
	margin: 28px 0;
}

.bcr-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 34px 0;
	padding-top: 26px;
	border-top: 1px solid var(--bcr-border);
}

.bcr-tag {
	padding: 8px 12px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 999px;
	background: #F8FAFC;
	color: var(--bcr-secondary);
	font-size: 0.86rem;
	font-weight: 800;
	text-decoration: none;
}

.bcr-tag:hover {
	border-color: rgba(253, 167, 2, 0.45);
	background: var(--bcr-primary-soft);
	color: var(--bcr-secondary);
}

.bcr-author-box {
	margin-top: 34px;
	padding: 24px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 22px;
	background:
		radial-gradient(circle at 0% 0%, rgba(253, 167, 2, 0.12), transparent 18rem),
		#F8FAFC;
}

.bcr-author-avatar {
	border: 4px solid #fff;
	border-radius: 20px;
	box-shadow: var(--bcr-shadow-xs);
}

.bcr-author-name {
	margin-bottom: 6px;
	color: var(--bcr-secondary);
	font-size: 1.15rem;
	font-weight: 900;
}

.bcr-author-bio {
	margin: 0;
	color: var(--bcr-text-muted) !important;
}

.bcr-related-posts {
	margin-top: 42px;
}

.bcr-related-title {
	margin-bottom: 20px;
	color: var(--bcr-secondary);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 900;
	letter-spacing: -0.05em;
}

.bcr-blog-sidebar {
	position: sticky;
	top: 104px;
	display: grid;
	gap: 18px;
}

.bcr-sidebar-box,
.widget {
	padding: 22px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--bcr-shadow);
}

.bcr-sidebar-title,
.widget-title {
	margin-bottom: 16px;
	color: var(--bcr-secondary);
	font-size: 1.05rem;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.bcr-sidebar-search {
	position: relative;
}

.bcr-sidebar-search .form-control {
	padding-right: 52px;
}

.bcr-sidebar-search button {
	position: absolute;
	top: 6px;
	right: 6px;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 12px;
	background: var(--bcr-gradient);
	color: var(--bcr-secondary);
}

.bcr-sidebar-categories,
.bcr-sidebar-recent {
	display: grid;
	gap: 10px;
	margin: 0;
}

.bcr-sidebar-categories a,
.bcr-sidebar-recent a {
	color: #334155;
	font-weight: 800;
	text-decoration: none;
}

.bcr-sidebar-categories a {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 12px;
	border-radius: 14px;
	background: #F8FAFC;
}

.bcr-sidebar-categories a:hover,
.bcr-sidebar-recent a:hover {
	background: var(--bcr-primary-soft);
	color: var(--bcr-secondary);
}

.bcr-sidebar-thumb {
	width: 64px;
	height: 54px;
	border-radius: 14px;
	object-fit: cover;
}

.bcr-sidebar-newsletter {
	background:
		radial-gradient(circle at 20% 0%, rgba(253, 167, 2, 0.24), transparent 18rem),
		var(--bcr-dark-gradient);
}

.bcr-sidebar-newsletter .bcr-sidebar-title {
	color: #fff;
}

.bcr-sidebar-newsletter .form-control {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.10);
	color: #fff;
}

.bcr-sidebar-newsletter .form-control::placeholder {
	color: rgba(255, 255, 255, 0.62);
}

/* Comments */
.bcr-comments-wrap,
.bcr-comments {
	margin-top: 42px;
}

.bcr-comments {
	padding: clamp(24px, 4vw, 36px);
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 28px;
	background: #fff;
	box-shadow: var(--bcr-shadow);
}

.bcr-comments-title,
.comment-reply-title {
	margin-bottom: 20px;
	color: var(--bcr-secondary);
	font-size: clamp(1.45rem, 3vw, 2rem);
	font-weight: 900;
	letter-spacing: -0.045em;
}

.bcr-comment-list {
	display: grid;
	gap: 16px;
	margin: 0 0 32px;
	padding: 0;
}

.bcr-comment-list .comment-body {
	position: relative;
	padding: 20px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 22px;
	background: #F8FAFC;
}

.bcr-comment-list .children {
	display: grid;
	gap: 14px;
	margin: 14px 0 0 28px;
	padding: 0;
	list-style: none;
}

.bcr-comment-list .comment-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
	color: var(--bcr-secondary);
	font-weight: 900;
}

.bcr-comment-list .avatar {
	border-radius: 16px;
	box-shadow: var(--bcr-shadow-xs);
}

.bcr-comment-list .comment-metadata,
.bcr-comment-list .comment-meta {
	color: var(--bcr-text-muted);
	font-size: 0.84rem;
	font-weight: 700;
}

.bcr-comment-list .comment-content {
	margin-top: 12px;
	color: #334155;
	line-height: 1.72;
}

.bcr-comment-list .reply a {
	display: inline-flex;
	margin-top: 10px;
	padding: 7px 11px;
	border-radius: 999px;
	background: var(--bcr-primary-soft);
	color: var(--bcr-secondary);
	font-size: 0.82rem;
	font-weight: 850;
	text-decoration: none;
}

.bcr-comment-form {
	display: grid;
	gap: 14px;
	margin-top: 18px;
}

.bcr-comment-form p {
	margin: 0;
}

.bcr-comment-form label {
	margin-bottom: 8px;
	color: var(--bcr-secondary);
	font-size: 0.82rem;
	font-weight: 850;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.bg-none
{
    background: none !important;
}

.bcr-comment-form textarea,
.bcr-comment-form input[type="text"],
.bcr-comment-form input[type="email"],
.bcr-comment-form input[type="url"] {
	width: 100%;
	border: 1px solid var(--bcr-border);
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--bcr-shadow-xs);
}

.bcr-comment-form textarea:focus,
.bcr-comment-form input:focus {
	border-color: var(--bcr-primary);
	outline: 0;
	box-shadow: 0 0 0 4px var(--bcr-ring);
}

.comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--bcr-text-muted);
	font-size: 0.92rem;
}

.comment-form-cookies-consent label {
	margin: 0;
	color: var(--bcr-text-muted);
	font-size: 0.92rem;
	font-weight: 650;
	letter-spacing: 0;
	text-transform: none;
}

.bcr-comments .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
}

.bcr-comments-closed {
	padding: 14px 16px;
	border-radius: 16px;
	background: var(--bcr-primary-soft);
	color: var(--bcr-secondary) !important;
	font-weight: 800;
}

@media (max-width: 991.98px) {
	.bcr-blog-sidebar {
		position: static;
	}
}

@media (max-width: 767.98px) {
	.bcr-single-article,
	.bcr-comments {
		padding: 20px;
		border-radius: 22px;
	}

	.bcr-post-title {
		font-size: clamp(2.2rem, 12vw, 3rem);
	}

	.bcr-post-meta span {
		width: 100%;
	}

	.bcr-comment-list .children {
		margin-left: 12px;
	}

	.bcr-author-box {
		flex-direction: column;
	}
}

/*faq yoast*/
	    /* FAQ Container */
.schema-faq.wp-block-yoast-faq-block {
  max-width: 800px !important;
  margin: 20px auto !important;
  font-family: inherit !important;
}

/* Individual FAQ Item */
.schema-faq-section {
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  margin-bottom: 12px !important;
  overflow: hidden !important;
  background-color: #ffffff !important;
  transition: all 0.3s ease !important;
}

/* FAQ Question (Header) */
.schema-faq-question {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 16px 20px !important;
  margin: 0 !important;
  cursor: pointer !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #333333 !important;
  background-color: #f9f9f9 !important;
  user-select: none !important;
  transition: background-color 0.2s ease !important;
}

.schema-faq-question:hover {
  background-color: #f0f0f0 !important;
}

/* Add + / - icon dynamically */
.schema-faq-question::after {
  content: '+' !important;
  font-size: 20px !important;
  font-weight: bold !important;
  color: #555555 !important;
  transition: transform 0.3s ease !important;
  margin-left: 10px !important;
}

/* Active State Icon */
.schema-faq-section.active .schema-faq-question::after {
  content: '−' !important;
}

/* FAQ Answer Content */
.schema-faq-answer {
  display: none !important;
  padding: 16px 20px !important;
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #555555 !important;
  border-top: 1px solid #eeeeee !important;
  background-color: #ffffff !important;
}

/* Show Answer when Active */
.schema-faq-section.active .schema-faq-answer {
  display: block !important;
}

/* ---------- Local Guide Section (Premium) ---------- */
.bcr-guide-content {
	padding: 2rem;
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	border: 1px solid rgba(17, 24, 39, 0.08);
	box-shadow: var(--bcr-shadow);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.bcr-guide-content:hover {
	transform: translateY(-4px);
	box-shadow: var(--bcr-shadow-lg);
}

.bcr-guide-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--bcr-primary) 0%, var(--bcr-primary-dark) 100%);
	color: #fff;
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 24px rgba(253, 167, 2, 0.3);
}

.bcr-guide-text {
	color: var(--bcr-text-muted);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.bcr-guide-text:last-child {
	margin-bottom: 0;
	font-weight: 700;
	color: var(--bcr-secondary);
	font-size: 1.1rem;
}

.bcr-map-wrapper {
	border-radius: var(--bcr-radius);
	overflow: hidden;
	box-shadow: var(--bcr-shadow-lg);
	height: 100%;
	min-height: 350px;
	background: #E2E8F0;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.bcr-map-wrapper:hover {
	transform: translateY(-4px);
	box-shadow: var(--bcr-shadow-xl);
}

.bcr-map-wrapper iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 350px;
	object-fit: cover;
}

/* Mobile - Process Cards Stack */
@media (max-width: 767.98px) {
    .bcr-process-timeline {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .bcr-process-card {
        width: 100%;
        max-width: 100%;
    }
}
