/* ==========================================
   HOME PAGE - ENGAGING HERO DESIGN
   ========================================== */

/* Hero Section */
.landing-hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	padding: var(--nav-offset) 0 0;
	background: url('../../Images/general/PatrioticCarLot.jpg') center/cover no-repeat;
	overflow: hidden;
}

.landing-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(11, 45, 91, 0.5);
	z-index: 0;
}

.landing-hero .container {
	position: relative;
	z-index: 1;
}

.hero-content-wrapper {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	gap: 4rem;
	align-items: center;
}

.hero-main h1 {
	font-size: clamp(2.75rem, 6vw, 5rem);
	line-height: 1.05;
	margin-bottom: 1.75rem;
	color: white;
	font-weight: 900;
	letter-spacing: -0.04em;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-lead {
	font-size: clamp(1.125rem, 1.8vw, 1.5rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.97);
	margin-bottom: 3.5rem;
	max-width: 620px;
	font-weight: 400;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2.5rem;
}

.benefit-item {
	position: relative;
	padding-left: 1.5rem;
	transition: transform 0.3s ease;
}

.benefit-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.benefit-item:hover {
	transform: translateX(8px);
}

.benefit-item:hover::before {
	width: 5px;
	background: var(--accent);
	box-shadow: 0 0 20px rgba(200, 29, 37, 0.6);
}

.benefit-item h3 {
	font-size: 1.25rem;
	font-weight: 800;
	color: white;
	margin-bottom: 0.625rem;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.benefit-item p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.6;
	margin: 0;
}

.hero-action-card {
	background: white;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 
		0 30px 60px rgba(0, 0, 0, 0.4),
		0 10px 30px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	position: relative;
	overflow: hidden;
	animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.hero-action-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
	background-size: 200% 100%;
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { background-position: 0% 0%; }
	50% { background-position: 100% 0%; }
}

.hero-action-card h2 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.hero-action-card > p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	font-size: 1.125rem;
	font-weight: 500;
}

.hero-search-form {
	margin-bottom: 1.75rem;
}

.quick-search-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-select {
	width: 100%;
	padding: 1rem 1.25rem;
	border: 2px solid var(--border-light);
	border-radius: 10px;
	font-size: 1.0625rem;
	color: var(--text-primary);
	background: white;
	font-weight: 500;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230b2d5b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 3rem;
}

.form-select:hover {
	border-color: var(--primary);
	background-color: #f8f9fb;
}

.form-select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 
		0 0 0 4px rgba(11, 45, 91, 0.1),
		0 4px 12px rgba(11, 45, 91, 0.15);
	transform: translateY(-2px);
}

.btn-block {
	width: 100%;
	justify-content: center;
	padding: 1.125rem 2rem;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	box-shadow: 
		0 4px 12px rgba(11, 45, 91, 0.3),
		0 2px 6px rgba(11, 45, 91, 0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-block:hover {
	transform: translateY(-3px);
	box-shadow: 
		0 8px 24px rgba(11, 45, 91, 0.4),
		0 4px 12px rgba(11, 45, 91, 0.3);
}

.btn-block:active {
	transform: translateY(-1px);
}

.hero-quick-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding-top: 1.75rem;
	border-top: 2px solid var(--border-light);
	flex-wrap: wrap;
}

.quick-link {
	color: var(--primary);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	padding-bottom: 2px;
}

.quick-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s ease;
}

.quick-link:hover {
	color: var(--accent);
}

.quick-link:hover::after {
	width: 100%;
}

.divider {
	color: var(--border-light);
	font-weight: 300;
	font-size: 1.25rem;
}

/* Search Section */
.landing-search {
	padding: 4rem 0 5rem;
	background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
	border-top: 1px solid var(--border-light);
}

.landing-search .container {
	max-width: 1000px;
}

.search-header {
	text-align: center;
	margin-bottom: 3rem;
}

.search-header h2 {
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin-bottom: 0.75rem;
	color: var(--text-primary);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.search-header p {
	font-size: 1.125rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* Tab Navigation */
.search-tabs {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
	justify-content: center;
	background: white;
	padding: 0.5rem;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tab-item {
	padding: 1rem 2rem;
	background: transparent;
	border: none;
	border-radius: 8px;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.tab-item::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--primary), #0d3a6f);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.tab-item:hover {
	color: var(--primary);
	background: rgba(11, 45, 91, 0.05);
}

.tab-item.active {
	color: white;
	position: relative;
}

.tab-item.active::before {
	opacity: 1;
}

.tab-item span {
	position: relative;
	z-index: 1;
}

/* Tab Content */
.tab-content {
	display: none;
	animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.tab-content.active {
	display: block;
}

/* Body Style Grid */
.bodystyle-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.bodystyle-option {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1.5rem;
	background: white;
	border: 3px solid var(--border-light);
	border-radius: 14px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	color: var(--text-primary);
	min-height: 100px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bodystyle-option::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--primary), #0d3a6f);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bodystyle-option:hover {
	border-color: var(--primary);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(11, 45, 91, 0.2);
}

.bodystyle-option:hover::before {
	opacity: 1;
}

.bodystyle-option:hover .bodystyle-label {
	color: white;
}

.bodystyle-label {
	font-weight: 800;
	font-size: 1.25rem;
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
	letter-spacing: -0.01em;
}

/* Advanced Search Form */
.search-form {
	background: white;
	border: 1px solid var(--border-light);
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.form-group label {
	font-weight: 700;
	font-size: 1rem;
	color: var(--text-primary);
	letter-spacing: -0.01em;
}

.form-group select,
.form-group input {
	padding: 0.875rem 1.125rem;
	border: 2px solid var(--border-light);
	border-radius: 10px;
	font-size: 1.0625rem;
	background: white;
	color: var(--text-primary);
	font-weight: 500;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group select:hover,
.form-group input:hover {
	border-color: var(--primary);
	background: #f8f9fb;
}

.form-group select:focus,
.form-group input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 
		0 0 0 4px rgba(11, 45, 91, 0.1),
		0 2px 8px rgba(11, 45, 91, 0.15);
	transform: translateY(-2px);
}

.form-actions {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 2px solid var(--border-light);
}

.form-actions .btn {
	padding: 1rem 2.5rem;
	font-weight: 700;
	font-size: 1.0625rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-actions .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
	.hero-content-wrapper {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.hero-benefits {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.hero-action-card {
		max-width: 600px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.landing-hero {
		height: auto;
		min-height: auto;
		padding: calc(var(--nav-offset) + 1.5rem) 0 2rem;
	}

	.hero-main h1 {
		font-size: 2rem;
		margin-bottom: 1rem;
		line-height: 1.15;
	}
	
	.hero-lead {
		font-size: 1rem;
		margin-bottom: 2rem;
		line-height: 1.6;
	}

	.hero-action-card {
		padding: 1.5rem 1.25rem;
	}
	
	.hero-action-card h2 {
		font-size: 1.5rem;
		margin-bottom: 0.75rem;
	}
	
	.hero-action-card p {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	.hero-quick-links {
		flex-direction: column;
		gap: 0.5rem;
	}

	.divider {
		display: none;
	}

	.search-tabs {
		justify-content: stretch;
		gap: 0.5rem;
	}

	.tab-item {
		flex: 1;
		text-align: center;
		font-size: 0.875rem;
		padding: 0.75rem 0.5rem;
	}

	.bodystyle-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}
	
	.bodystyle-card {
		padding: 1.25rem 1rem;
	}
	
	.form-select {
		padding: 0.875rem 1rem;
		font-size: 1rem;
		padding-right: 2.5rem;
		background-position: right 0.75rem center;
	}
	
	.btn-block {
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
	
	.quick-link {
		font-size: 0.9375rem;
	}
}

@media (max-width: 560px) {
	.landing-hero {
		padding: calc(var(--nav-offset) + 1rem) 0 1.5rem;
	}
	
	.hero-main h1 {
		font-size: 1.75rem;
		line-height: 1.2;
		margin-bottom: 0.875rem;
	}
	
	.hero-lead {
		font-size: 0.9375rem;
		margin-bottom: 1.5rem;
		line-height: 1.5;
	}
	
	.hero-benefits {
		gap: 1.25rem;
	}
	
	.benefit-item h3 {
		font-size: 1.125rem;
	}
	
	.benefit-item p {
		font-size: 0.9375rem;
	}
	
	.hero-action-card {
		padding: 1.25rem 1rem;
	}
	
	.hero-action-card h2 {
		font-size: 1.375rem;
	}
	
	.hero-action-card p {
		font-size: 0.9375rem;
	}
	
	.form-select {
		padding: 0.75rem 0.875rem;
		font-size: 0.9375rem;
		padding-right: 2.25rem;
	}
	
	.btn-block {
		padding: 0.875rem 1.25rem;
		font-size: 0.9375rem;
	}
	
	.bodystyle-grid {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
	
	.tab-item {
		font-size: 0.8125rem;
		padding: 0.625rem 0.5rem;
	}
	
	.quick-link {
		font-size: 0.875rem;
	}
	
	.hero-quick-links {
		padding-top: 1.25rem;
	}
}

	.form-row {
		grid-template-columns: 1fr;
	}

	.form-actions {
		flex-direction: column;
	}

	.form-actions .btn {
		width: 100%;
	}
}

/* ==========================================
   QUICK HELP CTA SECTION (Compact)
   ========================================== */

.quick-help-cta {
	padding: 1.5rem 0;
	background: var(--primary);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.cta-label {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	font-weight: 600;
}

.cta-actions {
	display: flex;
	gap: 1.5rem;
}

.cta-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9375rem;
	padding: 0.625rem 1.25rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.cta-link:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.cta-link svg {
	width: 18px;
	height: 18px;
	opacity: 0.9;
}

@media (max-width: 768px) {
	.cta-content {
		flex-direction: column;
		gap: 1rem;
	}

	.cta-actions {
		flex-direction: column;
		width: 100%;
	}

	.cta-link {
		width: 100%;
		justify-content: center;
	}
}

/* ==========================================
   FEATURED VEHICLES SECTION
   ========================================== */

.featured-vehicles {
	padding: 4rem 0;
	background: linear-gradient(180deg, #f8f9fb 0%, white 50%);
}

.container-full {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 2rem;
}

.featured-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid var(--gray-200);
}

.header-content h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.header-content p {
	font-size: 1.125rem;
	color: var(--gray-600);
}

.btn-view-all {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: var(--primary);
	color: white;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.0625rem;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(11, 45, 91, 0.2);
}

.btn-view-all:hover {
	background: #0a2647;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(11, 45, 91, 0.3);
}

.btn-view-all svg {
	transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
	transform: translateX(4px);
}

.featured-layout {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 2.5rem;
	align-items: start;
}

/* ==========================================
   QUICK SEARCH SIDEBAR
   ========================================== */

.quick-search-sidebar {
	position: sticky;
	top: calc(var(--nav-offset) + 2rem);
}

.search-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 
		0 8px 24px rgba(11, 45, 91, 0.1),
		0 0 0 1px rgba(11, 45, 91, 0.04);
}

.search-card h3 {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 0.375rem;
	letter-spacing: -0.01em;
}

.search-subtitle {
	font-size: 0.9375rem;
	color: var(--gray-600);
	margin-bottom: 1.75rem;
}

.quick-search-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid var(--gray-200);
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--gray-700);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.search-select {
	width: 100%;
	padding: 0.875rem 1rem;
	padding-right: 2.5rem;
	border: 2px solid var(--gray-300);
	border-radius: 12px;
	font-size: 1rem;
	color: var(--gray-800);
	background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-weight: 600;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230b2d5b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	box-shadow: 
		0 2px 8px rgba(11, 45, 91, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.search-select:hover {
	border-color: var(--primary);
	background: white;
	box-shadow: 
		0 4px 12px rgba(11, 45, 91, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
	transform: translateY(-1px);
}

.search-select:focus {
	outline: none;
	border-color: var(--primary);
	background: white;
	box-shadow: 
		0 0 0 4px rgba(11, 45, 91, 0.1),
		0 4px 12px rgba(11, 45, 91, 0.15);
	transform: translateY(-1px);
}

.btn-search-now {
	width: 100%;
	padding: 1rem;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 1.0625rem;
	font-weight: 800;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(11, 45, 91, 0.2);
}

.btn-search-now:hover {
	background: #0a2647;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(11, 45, 91, 0.3);
}

.sidebar-cta {
	text-align: center;
	padding: 1.5rem;
	background: linear-gradient(135deg, var(--primary) 0%, #0a2647 100%);
	border-radius: 16px;
	color: white;
}

.sidebar-cta svg {
	margin: 0 auto 1rem;
	opacity: 0.9;
}

.sidebar-cta h4 {
	font-size: 1.25rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	letter-spacing: -0.01em;
}

.sidebar-cta p {
	font-size: 0.9375rem;
	opacity: 0.9;
	margin-bottom: 1rem;
	line-height: 1.5;
}

.sidebar-cta-phones {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	gap: 0.5rem;
	overflow: visible;
	padding-bottom: 0;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.sidebar-cta-phones > li {
	width: 100%;
}

.cta-phone {
	display: inline-block;
	flex: 0 0 auto;
	white-space: nowrap;
	padding: 0.75rem 1.5rem;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	text-decoration: none;
	font-weight: 800;
	font-size: 1.125rem;
	border-radius: 10px;
	transition: all 0.3s ease;
}

/* Sidebar phone buttons should fit the card */
.sidebar-cta-phones .cta-phone {
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	max-width: 100%;
	padding: 0.6rem 0.85rem;
	font-size: 0.95rem;
	line-height: 1.2;
	white-space: normal;
	overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
	.cta-phone {
		font-size: 1rem;
		padding: 0.625rem 1rem;
	}
}

.cta-phone:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	transform: scale(1.05);
}

/* ==========================================
   FEATURED VEHICLES GRID
   ========================================== */

.featured-main {
	min-height: 400px;
}

.featured-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.featured-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 4px 12px rgba(11, 45, 91, 0.08);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}

.featured-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(11, 45, 91, 0.16);
}

.card-image {
	position: relative;
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: #f5f5f5;
	isolation: isolate;
	border-radius: 12px 12px 0 0;
}

.card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.4s ease;
	z-index: 1;
}

.featured-card:hover .card-image img {
	transform: scale(1.08);
}

.card-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--accent);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.8125rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 12px rgba(200, 29, 37, 0.4);
}

.card-badge.certified {
	background: #0d3a6f;
	box-shadow: 0 4px 12px rgba(13, 58, 111, 0.4);
}

.card-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	flex: 1;
}

.card-price {
	font-size: 1.875rem;
	font-weight: 900;
	color: var(--primary);
	letter-spacing: -0.02em;
}

.card-title {
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--gray-900);
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.card-specs {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	color: var(--gray-600);
	font-size: 0.9375rem;
	font-weight: 500;
}

.card-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: 0.875rem;
	border-top: 1px solid var(--gray-200);
}

.feature-tag {
	padding: 0.375rem 0.75rem;
	background: var(--gray-100);
	border: 1px solid var(--gray-200);
	border-radius: 6px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--gray-700);
}

.featured-footer {
	text-align: center;
	padding: 2.5rem 0 1rem;
	border-top: 2px solid var(--gray-200);
}

.btn-browse-all {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 3rem;
	background: white;
	border: 3px solid var(--primary);
	color: var(--primary);
	text-decoration: none;
	font-weight: 800;
	font-size: 1.125rem;
	border-radius: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(11, 45, 91, 0.1);
}

.btn-browse-all:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(11, 45, 91, 0.25);
}

.btn-browse-all svg {
	transition: transform 0.3s ease;
}

.btn-browse-all:hover svg {
	transform: translateX(6px);
}

/* Responsive */
@media (max-width: 1024px) {
	.featured-layout {
		grid-template-columns: 1fr;
	}

	.quick-search-sidebar {
		position: static;
	}

	.featured-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.featured-vehicles {
		padding: 2rem 0;
	}

	.container-full {
		padding: 0 1rem;
	}

	.featured-header {
		flex-direction: column;
		gap: 1rem;
		align-items: flex-start;
	}

	.btn-view-all {
		width: 100%;
		justify-content: center;
	}

	.featured-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.btn-browse-all {
		width: 100%;
		justify-content: center;
	}
}

/* ==========================================
   CTA BANNER SECTION
   ========================================== */

.cta-banner {
	padding: 3.5rem 0;
	background: linear-gradient(135deg, var(--primary) 0%, #0a2647 100%);
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
	opacity: 0.4;
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto;
}

.cta-text {
	flex: 1;
}

.cta-text h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	color: white;
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.cta-text p {
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	max-width: 550px;
}

.cta-actions {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
}

.btn-cta.btn-primary {
	background: var(--accent);
	color: white;
	border: 2px solid var(--accent);
}

.btn-cta.btn-primary:hover {
	background: var(--brand-red-2);
	border-color: var(--brand-red-2);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(200, 29, 37, 0.4);
}

.btn-cta.btn-secondary {
	background: white;
	color: var(--primary);
	border: 2px solid white;
}

.btn-cta.btn-secondary:hover {
	background: transparent;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-cta svg {
	transition: transform 0.3s ease;
}

.btn-cta:hover svg {
	transform: translateX(4px);
}

/* CTA Banner - Responsive */
@media (max-width: 1024px) {
	.cta-content {
		flex-direction: column;
		text-align: center;
		gap: 2.5rem;
	}

	.cta-text {
		max-width: 100%;
	}

	.cta-text p {
		max-width: 100%;
	}

	.cta-actions {
		justify-content: center;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.cta-banner {
		padding: 3rem 0;
	}

	.cta-actions {
		flex-direction: column;
		width: 100%;
	}

	.btn-cta {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 560px) {
	.cta-banner {
		padding: 2.5rem 0;
	}

	.btn-cta {
		padding: 0.875rem 1.5rem;
		font-size: 0.9375rem;
	}
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
	padding: 6rem 0 7rem;
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
	position: relative;
	overflow: hidden;
}

.about-section::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(11, 45, 91, 0.03) 0%, transparent 70%);
	pointer-events: none;
}

.about-welcome {
	text-align: center;
	margin-bottom: 4.5rem;
}

.welcome-label {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 0.75rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.section-subtitle {
	font-size: 1.25rem;
	color: var(--gray-600);
	font-weight: 500;
	margin: 0;
}

.about-content {
	max-width: 1100px;
	margin: 0 auto;
}

.about-block {
	background: white;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(11, 45, 91, 0.06);
	margin-bottom: 3.5rem;
	border-left: 4px solid var(--primary);
}

.about-block p {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--gray-700);
	margin: 0;
	max-width: none;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.about-card {
	background: white;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(11, 45, 91, 0.06);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(11, 45, 91, 0.08);
	display: flex;
	flex-direction: column;
}

.about-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 36px rgba(11, 45, 91, 0.12);
	border-color: var(--primary);
}

.card-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(200, 29, 37, 0.08) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.about-card h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

.about-card p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--gray-600);
	margin-bottom: 1.5rem;
	flex: 1;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.card-link {
	display: inline-flex;
	align-items: center;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
	transition: all 0.2s ease;
	margin-top: auto;
}

.card-link:hover {
	color: var(--accent);
	transform: translateX(4px);
}

/* About Section - Responsive */
@media (max-width: 1024px) {
	.about-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.75rem;
	}
}

@media (max-width: 768px) {
	.about-section {
		padding: 4rem 0 5rem;
	}

	.about-welcome {
		margin-bottom: 3rem;
	}

	.about-block {
		padding: 2rem;
		margin-bottom: 2.5rem;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.about-card {
		padding: 2rem;
	}
}

@media (max-width: 560px) {
	.about-section {
		padding: 3rem 0 4rem;
	}

	.about-block {
		padding: 1.5rem;
	}

	.about-card {
		padding: 1.75rem;
	}

	.card-icon {
		width: 56px;
		height: 56px;
	}

	.about-card h3 {
		font-size: 1.25rem;
	}
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-section {
	padding: 6rem 0;
	background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.services-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	position: relative;
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(11, 45, 91, 0.08);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	min-height: 400px;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(11, 45, 91, 0.08);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 180px;
	background: linear-gradient(135deg, rgba(11, 45, 91, 0.4) 0%, rgba(10, 38, 71, 0.5) 100%), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=800&q=80');
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.service-card.service-schedule::before {
	background: linear-gradient(135deg, rgba(11, 45, 91, 0.4) 0%, rgba(13, 58, 111, 0.5) 100%), url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=800&q=80');
	background-size: cover;
	background-position: center;
}

.service-card.service-visit::before {
	background: linear-gradient(135deg, rgba(10, 38, 71, 0.4) 0%, rgba(11, 45, 91, 0.5) 100%), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=800&q=80');
	background-size: cover;
	background-position: center;
}

.service-card.service-find::before {
	background: linear-gradient(135deg, rgba(200, 29, 37, 0.4) 0%, rgba(169, 21, 28, 0.5) 100%), url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?w=800&q=80');
	background-size: cover;
	background-position: center;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(11, 45, 91, 0.15);
}

.service-content {
	position: relative;
	z-index: 1;
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	margin-top: 120px;
	background: white;
	border-radius: 16px 16px 0 0;
}

.service-card h3 {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

.service-card p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--gray-600);
	margin-bottom: 2rem;
	flex: 1;
}

.service-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.625rem 1rem;
	background: var(--primary);
	color: white;
	font-weight: 600;
	font-size: 0.8125rem;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
	border: 2px solid var(--primary);
}

.service-btn:hover {
	background: #0a2647;
	border-color: #0a2647;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(11, 45, 91, 0.25);
}

.service-actions {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.service-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.625rem 1rem;
	background: white;
	color: var(--primary);
	font-weight: 600;
	font-size: 0.8125rem;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
	border: 2px solid var(--primary);
}

.service-btn-secondary:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(11, 45, 91, 0.2);
}

/* Services Section - Responsive */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.75rem;
	}

	.service-card:last-child {
		grid-column: 1 / -1;
		max-width: 600px;
		margin: 0 auto;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.services-section {
		padding: 4rem 0;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.service-card {
		min-height: 350px;
	}

	.service-content {
		padding: 2rem;
		margin-top: 100px;
	}

	.service-card::before {
		height: 150px;
	}

	.service-btn,
	.service-btn-secondary {
		padding: 0.5rem 0.75rem;
		font-size: 0.75rem;
	}

	.service-actions {
		gap: 0.375rem;
	}
}

@media (max-width: 560px) {
	.services-section {
		padding: 3rem 0;
	}

	.service-content {
		padding: 1.75rem;
	}

	.service-card h3 {
		font-size: 1.5rem;
	}

	.service-btn,
	.service-btn-secondary {
		padding: 0.5rem 0.625rem;
		font-size: 0.6875rem;
	}

	.service-actions {
		gap: 0.25rem;
	}
}
