/* =========================================================
   SINGLE FLEET PAGE - BASE
========================================================= */

.alston-single-fleet {
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	color: #181A1F;
}

.alston-single-fleet *,
.alston-single-fleet *::before,
.alston-single-fleet *::after {
	box-sizing: border-box;
}

.alston-single-fleet img,
.alston-single-fleet video {
	max-width: 100%;
	display: block;
}

.alston-single-fleet a {
	text-decoration: none;
	color: inherit;
}

.alston-fleet-breadcrumb__inner,
.alston-fleet-intro__inner,
.alston-fleet-gallery__inner,
.alston-fleet-booking__inner,
.alston-fleet-features__inner,
.alston-related-fleets__inner {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 5px;
	padding-right: 5px;
}


/* =========================================================
   ENTRANCE ANIMATION
========================================================= */

.alston-fleet-reveal,
.alston-fleet-breadcrumb,
.alston-fleet-hero-media,
.alston-fleet-intro__content,
.alston-fleet-intro__points,
.alston-fleet-gallery__item,
.alston-fleet-booking__vehicle,
.alston-fleet-booking__card,
.alston-fleet-features__card,
.alston-related-fleets__card {
	opacity: 0;
	transform: translateY(42px);
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

.alston-fleet-gallery__item:nth-child(2),
.alston-fleet-features__card:nth-child(2),
.alston-related-fleets__card:nth-child(2) {
	transition-delay: 0.08s;
}

.alston-fleet-gallery__item:nth-child(3),
.alston-fleet-features__card:nth-child(3),
.alston-related-fleets__card:nth-child(3) {
	transition-delay: 0.14s;
}

.alston-fleet-gallery__item:nth-child(4),
.alston-fleet-features__card:nth-child(4),
.alston-related-fleets__card:nth-child(4) {
	transition-delay: 0.2s;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.alston-fleet-breadcrumb {
	width: 100%;
	position: relative;
	background: #181A1F;
	overflow: hidden;
	padding: 150px 0;
}

.alston-fleet-breadcrumb__title {
	font-family: var(--font-family-main, inherit);
	font-weight: 600;
	font-size: 44px;
	line-height: 58px;
	color: #ffffff;
	text-transform: capitalize;
	margin: 0 0 10px;
}

.alston-fleet-breadcrumb__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.7rem;
	padding-top: 10px;
	color: #ffffff;
	font-size: 15px;
	line-height: 24px;
}

.alston-fleet-breadcrumb__nav a,
.alston-fleet-breadcrumb__nav span {
	color: #ffffff;
}


/* =========================================================
   HERO MEDIA
========================================================= */

.alston-fleet-hero-media {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #111111;
}

.alston-fleet-hero-media__image,
.alston-fleet-hero-media__video {
	width: 100%;
	height: 600px;
	object-fit: cover;
	object-position: center;
	transform: scale(1.08);
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.alston-fleet-hero-media.is-visible .alston-fleet-hero-media__image,
.alston-fleet-hero-media.is-visible .alston-fleet-hero-media__video {
	transform: scale(1);
}


/* =========================================================
   INTRO SECTION
========================================================= */

.alston-fleet-intro {
	width: 100%;
	padding: 5rem 0;
	background: #ffffff;
}

.alston-fleet-intro__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 26px;
}

.alston-fleet-intro__content {
	max-width: 1170px;
}

.alston-fleet-intro__content h2 {
	font-family: var(--font-family-main, inherit);
	font-weight: 600;
	font-size: 44px;
	line-height: 54px;
	color: #181A1F;
	margin: 0 0 15px;
}

.alston-fleet-intro__description {
	font-size: 16px;
	line-height: 26px;
	color: #555555;
	max-width: 980px;
}

.alston-fleet-intro__description p {
	margin: 0 0 18px;
}

.alston-fleet-intro__description p:last-child {
	margin-bottom: 0;
}

.alston-fleet-intro__points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
	max-width: 760px;
}

.alston-fleet-intro__points li {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 18px;
	line-height: 28px;
	color: #181A1F;
}

.alston-fleet-intro__check {
	width: 25px;
	height: 25px;
	min-width: 25px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.08);
	color: #181A1F;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
}


/* =========================================================
   GALLERY SECTION
========================================================= */

.alston-fleet-gallery {
	width: 100%;
	padding: 0 0 5rem;
	background: #ffffff;
}

.alston-fleet-gallery__heading {
	font-family: var(--font-family-main, inherit);
	font-size: 44px;
	line-height: 54px;
	font-weight: 600;
	margin: 0 0 30px;
	color: #181A1F;
}

.alston-fleet-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.alston-fleet-gallery__item {
	margin: 0;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	background: #f6f6f6;
	min-height: 390px;
}

.alston-fleet-gallery__item img {
	width: 100%;
	height: 100%;
	min-height: 390px;
	object-fit: cover;
	object-position: center;
	transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.alston-fleet-gallery__item:hover img {
	transform: scale(1.04);
}


/* =========================================================
   BOOKING SECTION
========================================================= */

.alston-fleet-booking {
	width: 100%;
	padding: 5rem 0;
	background: #ffffff;
}

.alston-fleet-booking__inner {
	display: grid;
	grid-template-columns: minmax(0, 65%) minmax(320px, 35%);
	gap: 32px;
	align-items: start;
}

.alston-fleet-booking__vehicle {
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	background: #ffffff;
	padding: 30px;
	min-height: 100%;
}

.alston-fleet-booking__content h2 {
	font-size: 44px;
	line-height: 54px;
	font-weight: 600;
	color: #181A1F;
	margin: 0 0 15px;
}

.alston-fleet-booking__content p {
	font-size: 14px;
	line-height: 24px;
	color: #666666;
	margin: 0 0 20px;
	max-width: 680px;
}

.alston-fleet-booking__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 16px;
	margin: 18px 0 30px;
}

.alston-fleet-booking__meta-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 14px;
	line-height: 24px;
	color: #555555;
}

.alston-fleet-booking__meta-item img {
	width: 40px;
	height: 40px;
	min-width: 40px;
	padding: 11px;
	border-radius: 50%;
	background: #f3f3f3;
	object-fit: contain;
}

.alston-fleet-booking__image {
	width: 100%;
	margin-top: 18px;
}

.alston-fleet-booking__image img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.alston-fleet-booking__card {
	background: #F0FBF7;
	border-radius: 6px;
	padding: 34px 28px;
	align-self: end;
}

.alston-fleet-booking__card h3 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 600;
	color: #181A1F;
	margin: 0 0 12px;
}

.alston-fleet-booking__card p {
	font-size: 16px;
	line-height: 26px;
	color: #555555;
	margin: 0 0 22px;
}

.alston-fleet-booking__button {
	width: 100%;
	min-width: 100%;
	position: relative;
	font-family: var(--font-family-main, inherit);
	font-size: 16px;
	font-weight: 600;
	padding: 14px 24px;
	line-height: normal;
	text-align: center;
	border-radius: 4px;
	background: #181A1F;
	border: 1px solid #181A1F;
	color: #ffffff;
	transition: 0.35s ease-in-out;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.6rem;
}

.alston-fleet-booking__button:hover {
	background: transparent;
	color: #181A1F;
}


/* =========================================================
   ICON FEATURE CARDS
========================================================= */

.alston-fleet-features {
	width: 100%;
	padding: 5rem 0;
	background: #f7f7f4;
}

.alston-fleet-features__heading {
	font-size: 44px;
	line-height: 54px;
	font-weight: 600;
	color: #181A1F;
	margin: 0 0 34px;
}

.alston-fleet-features__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.alston-fleet-features__card {
	background: #ffffff;
	padding: 4rem 2.2rem 1.6rem;
	border-radius: 10px;
	min-height: 260px;
}

.alston-fleet-features__icon {
	display: flex;
	margin-bottom: 24px;
}

.alston-fleet-features__icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.alston-fleet-features__card h3 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	color: #181A1F;
	margin: 0 0 15px;
}

.alston-fleet-features__card p {
	font-size: 16px;
	line-height: 26px;
	color: #555555;
	margin: 0;
}


/* =========================================================
   RELATED FLEETS
========================================================= */

.alston-related-fleets {
	width: 100%;
	padding: 5rem 0;
	background: #ffffff;
}

.alston-related-fleets__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}

.alston-related-fleets__top h2 {
	font-size: 44px;
	line-height: 54px;
	font-weight: 600;
	color: #181A1F;
	margin: 0;
}

.alston-related-fleets__top a {
	font-size: 16px;
	line-height: 26px;
	font-weight: 600;
	color: #181A1F;
	padding: 5px 0;
}

.alston-related-fleets__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
}

.alston-related-fleets__card {
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	padding: 30px;
	background: #ffffff;
	transition:
		transform 0.35s ease,
		border-color 0.35s ease;
}

.alston-related-fleets__card:hover {
	transform: translateY(-6px);
	border-color: #181A1F;
}

.alston-related-fleets__image {
	display: block;
	margin-bottom: 22px;
}

.alston-related-fleets__image img {
	width: 100%;
	height: 190px;
	object-fit: contain;
}

.alston-related-fleets__content h3 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	color: #181A1F;
	margin: 0 0 10px;
}

.alston-related-fleets__content p {
	font-size: 14px;
	line-height: 24px;
	color: #666666;
	margin: 0 0 18px;
}

.alston-related-fleets__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 0.5rem;
}

.alston-related-fleets__meta span {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 14px;
	line-height: 24px;
	color: #555555;
}

.alston-related-fleets__meta img {
	width: 40px;
	height: 40px;
	min-width: 40px;
	padding: 11px;
	border-radius: 50%;
	background: #f3f3f3;
	object-fit: contain;
}


/* =========================================================
   LAPTOP - 1025px to 1366px
========================================================= */

@media (min-width: 1025px) and (max-width: 1366px) {
	.alston-fleet-breadcrumb__inner,
	.alston-fleet-intro__inner,
	.alston-fleet-gallery__inner,
	.alston-fleet-booking__inner,
	.alston-fleet-features__inner,
	.alston-related-fleets__inner {
		max-width: 1187px;
		padding-left: 18px;
		padding-right: 18px;
	}

	.alston-fleet-breadcrumb {
		padding: 130px 0;
	}

	.alston-fleet-hero-media__image,
	.alston-fleet-hero-media__video {
		height: 560px;
	}

	.alston-fleet-booking__inner {
		grid-template-columns: minmax(0, 62%) minmax(300px, 38%);
	}
}


/* =========================================================
   TABLET - 768px to 1024px
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {
	.alston-fleet-breadcrumb__inner,
	.alston-fleet-intro__inner,
	.alston-fleet-gallery__inner,
	.alston-fleet-booking__inner,
	.alston-fleet-features__inner,
	.alston-related-fleets__inner {
		max-width: 100%;
		padding-left: 24px;
		padding-right: 24px;
	}

	.alston-fleet-breadcrumb {
		padding: 110px 0;
	}

	.alston-fleet-breadcrumb__title,
	.alston-fleet-intro__content h2,
	.alston-fleet-gallery__heading,
	.alston-fleet-booking__content h2,
	.alston-fleet-features__heading,
	.alston-related-fleets__top h2 {
		font-size: 38px;
		line-height: 48px;
	}

	.alston-fleet-hero-media__image,
	.alston-fleet-hero-media__video {
		height: 480px;
	}

	.alston-fleet-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
	}

	.alston-fleet-booking__inner {
		grid-template-columns: 1fr;
	}

	.alston-fleet-booking__card {
		align-self: stretch;
	}

	.alston-fleet-features__grid,
	.alston-related-fleets__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}


/* =========================================================
   MOBILE - 0px to 767px
========================================================= */

@media (min-width: 0px) and (max-width: 767px) {
	.alston-fleet-breadcrumb__inner,
	.alston-fleet-intro__inner,
	.alston-fleet-gallery__inner,
	.alston-fleet-booking__inner,
	.alston-fleet-features__inner,
	.alston-related-fleets__inner {
		max-width: 100%;
		padding-left: 18px;
		padding-right: 18px;
	}

	.alston-fleet-breadcrumb {
		padding: 82px 0;
	}

	.alston-fleet-breadcrumb__title {
		font-size: 34px;
		line-height: 42px;
		word-break: normal;
	}

	.alston-fleet-breadcrumb__nav {
		gap: 0.8rem;
		font-size: 14px;
		line-height: 22px;
	}

	.alston-fleet-hero-media__image,
	.alston-fleet-hero-media__video {
		height: 360px;
	}

	.alston-fleet-intro,
	.alston-fleet-booking,
	.alston-fleet-features,
	.alston-related-fleets {
		padding: 4rem 0;
	}

	.alston-fleet-gallery {
		padding: 0 0 4rem;
	}

	.alston-fleet-intro__content h2,
	.alston-fleet-gallery__heading,
	.alston-fleet-booking__content h2,
	.alston-fleet-features__heading,
	.alston-related-fleets__top h2 {
		font-size: 32px;
		line-height: 40px;
	}

	.alston-fleet-intro__points li {
		font-size: 16px;
		line-height: 26px;
		align-items: flex-start;
	}

	.alston-fleet-gallery__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.alston-fleet-gallery__item,
	.alston-fleet-gallery__item img {
		min-height: 280px;
	}

	.alston-fleet-booking__inner {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.alston-fleet-booking__vehicle,
	.alston-fleet-booking__card,
	.alston-related-fleets__card {
		padding: 24px;
	}

	.alston-fleet-booking__meta {
		display: grid;
		grid-template-columns: 1fr;
	}

	.alston-fleet-features__grid,
	.alston-related-fleets__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.alston-fleet-features__card {
		padding: 3rem 1.6rem 1.4rem;
	}

	.alston-related-fleets__top {
		align-items: flex-start;
		flex-direction: column;
	}
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

	.alston-fleet-reveal,
	.alston-fleet-breadcrumb,
	.alston-fleet-hero-media,
	.alston-fleet-intro__content,
	.alston-fleet-intro__points,
	.alston-fleet-gallery__item,
	.alston-fleet-booking__vehicle,
	.alston-fleet-booking__card,
	.alston-fleet-features__card,
	.alston-related-fleets__card {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.alston-fleet-hero-media__image,
	.alston-fleet-hero-media__video,
	.alston-fleet-gallery__item img {
		transform: none !important;
		transition: none !important;
	}
}