.home-hero-categories {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	margin-top: -2rem;
	overflow: hidden;
}

.home-hero-categories__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	height: 800px;
	gap: 0;
}

.home-hero-categories__tile {
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 2rem;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.home-hero-categories__tile::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
	transition: background 0.3s ease;
	z-index: 1;
}

.home-hero-categories__tile::after {
	content: '';
	position: absolute;
	inset: 0;
	background: inherit;
	background-size: cover;
	background-position: center;
	z-index: 0;
	transform: scale(1);
	transition: transform 0.45s ease;
}

.home-hero-categories__tile span {
	position: relative;
	z-index: 2;
	font-size: clamp(1.3rem, 2vw, 2.2rem);
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.home-hero-categories__tile:hover::after {
	transform: scale(1.08);
}

.home-hero-categories__tile:hover::before {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.35));
}

.home-filter,
.home-latest,
.home-company,
.home-services,
.home-why-us,
.home-forwarding,
.home-cta {
	margin-top: clamp(3rem, 5vw, 5.5rem);
}

.home-company {
	background: linear-gradient(150deg, #ffffff 0%, #f8f7f2 100%);
	border: 1px solid rgba(148, 163, 184, 0.3);
	border-radius: 20px;
	padding: clamp(2rem, 4vw, 3rem);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.home-company__inner {
	max-width: 960px;
	display: grid;
	gap: 1rem;
}

.home-company__eyebrow,
.home-forwarding__eyebrow {
	margin: 0;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	color: #7c5f0f;
}

.home-company__inner h2 {
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.home-company__inner p {
	margin: 0;
	line-height: 1.7;
	color: #475569;
}

.home-company__button {
	justify-self: start;
	padding: 0.9rem 1.4rem;
	border-radius: 999px;
	background: #111827;
	color: #fff;
	font-weight: 700;
}

.home-filter__form {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 20px;
	padding: clamp(1.4rem, 2.5vw, 2.25rem);
	box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

.home-filter__row {
	display: contents;
}

.home-filter__row--three {
	grid-template-columns: none;
}

.home-filter__row--two {
	grid-template-columns: none;
}

.home-filter__form label {
	display: grid;
	gap: 0.45rem;
	min-width: 0;
}

.home-filter__form span {
	font-size: 0.88rem;
	font-weight: 700;
	color: #475569;
	letter-spacing: 0.02em;
}

.home-filter__form input,
.home-filter__form select,
.home-filter__form button {
	width: 100%;
	height: 56px;
	padding: 0.85rem 1rem;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	font: inherit;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-filter__form input:focus,
.home-filter__form select:focus {
	outline: none;
	border-color: var(--af-primary);
	box-shadow: 0 0 0 4px rgba(199, 154, 16, 0.18);
}

.home-filter__submit-wrap {
	min-width: 0;
}

.home-filter__form button {
	background: var(--af-primary);
	border-color: var(--af-primary);
	font-weight: 800;
	font-size: 1rem;
	letter-spacing: 0.03em;
	cursor: pointer;
	min-width: 0;
	color: #0f172a;
}

.home-filter__form button:hover {
	filter: brightness(0.96);
}

.home-section-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.4rem;
	gap: 1rem;
}

.home-section-heading h2 {
	margin: 0;
}

.home-section-heading a {
	color: var(--af-primary);
	font-weight: 700;
}

.home-latest__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}

.home-latest .vehicle-card {
	height: 100%;
	border-radius: 16px;
	border-color: rgba(148, 163, 184, 0.3);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-latest .vehicle-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.home-latest .vehicle-card__image-wrap {
	aspect-ratio: 16 / 9;
}

.home-latest .vehicle-card__image {
	transition: transform 0.45s ease;
}

.home-latest .vehicle-card:hover .vehicle-card__image {
	transform: scale(1.06);
}

.home-latest .vehicle-card__content {
	padding: 1.15rem;
}

.home-latest .vehicle-card__price {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.home-latest .vehicle-card__meta {
	gap: 0.45rem;
}

.home-services__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.home-services__card {
	background: #fff;
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 18px;
	padding: 1.4rem;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
	display: grid;
	gap: 0.75rem;
}

.home-services__icon {
	font-size: 1.8rem;
	display: inline-flex;
	width: 3.1rem;
	height: 3.1rem;
	align-items: center;
	justify-content: center;
	background: rgba(199, 154, 16, 0.18);
	border-radius: 50%;
}

.home-services__card h3 {
	margin: 0;
	font-size: 1.12rem;
}

.home-services__card p {
	margin: 0;
	color: #475569;
	line-height: 1.6;
}

.home-services__card a {
	color: #7c5f0f;
	font-weight: 700;
}

.home-why-us h2 {
	margin-bottom: 1.4rem;
}

.home-why-us__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.home-why-us__grid article {
	background: #fff;
	border: 1px solid rgba(148, 163, 184, 0.3);
	padding: 1.5rem;
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.home-why-us__grid h3 {
	margin: 0.85rem 0;
	font-size: 1.15rem;
}

.home-why-us__grid p {
	margin: 0;
	color: #475569;
	line-height: 1.6;
}

.home-why-us__grid span {
	font-size: 1.9rem;
	display: inline-flex;
	width: 3.4rem;
	height: 3.4rem;
	align-items: center;
	justify-content: center;
	background: rgba(199, 154, 16, 0.18);
	border-radius: 50%;
}

.home-cta {
	background: linear-gradient(135deg, #121c2d 0%, #0f172a 45%, #1f2937 100%);
	color: #fff;
	border-radius: 20px;
	padding: clamp(2rem, 4.5vw, 3.5rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	box-shadow: 0 24px 40px rgba(15, 23, 42, 0.25);
}

.home-forwarding {
	background: linear-gradient(145deg, #101827 0%, #111827 65%, #0f172a 100%);
	border-radius: 20px;
	padding: clamp(1.8rem, 4vw, 3rem);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	color: #fff;
	box-shadow: 0 22px 40px rgba(15, 23, 42, 0.24);
}

.home-forwarding__content {
	max-width: 760px;
	display: grid;
	gap: 0.8rem;
}

.home-forwarding__content h2,
.home-forwarding__content p {
	margin: 0;
}

.home-forwarding__content p {
	color: rgba(255, 255, 255, 0.85);
}

.home-forwarding__button {
	background: var(--af-primary);
	color: #111;
	font-weight: 800;
	border-radius: 999px;
	padding: 1rem 1.55rem;
	white-space: nowrap;
}

.home-cta h2 {
	margin: 0;
	font-size: clamp(1.45rem, 2.5vw, 2.1rem);
	max-width: 720px;
}

.home-cta__button {
	background: var(--af-primary);
	padding: 1rem 1.75rem;
	border-radius: 999px;
	font-weight: 800;
	font-size: 1rem;
	color: #111;
	box-shadow: 0 10px 24px rgba(199, 154, 16, 0.35);
}

@media (max-width: 1180px) {
	.home-filter__form {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-latest__grid,
	.home-services__grid,
	.home-why-us__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-hero-categories__grid {
		height: 640px;
	}
}

@media (max-width: 720px) {
	.home-hero-categories__grid {
		grid-template-columns: 1fr;
		height: auto;
	}

	.home-hero-categories__tile {
		min-height: 280px;
		align-items: center;
		justify-content: center;
		padding: 1.25rem;
		background-position: center center;
		text-align: center;
	}

	.home-hero-categories__tile span {
		width: 100%;
		text-align: center;
	}

	.home-filter__form,
	.home-latest__grid,
	.home-services__grid,
	.home-why-us__grid {
		grid-template-columns: 1fr;
	}

	.home-filter__form button {
		width: 100%;
	}

	.home-cta {
		flex-direction: column;
		align-items: flex-start;
	}

	.home-forwarding {
		flex-direction: column;
		align-items: flex-start;
	}
}
