@charset "UTF-8";
/* CSS Document */

/* Font Imports */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

/* Font Variables */
:root {
	/* Existing color variables */
	--primary: #cf2e26;
	--secondary: #3f4549;
	--dark: #060606;
	--light: #ffffff;

	/* Font variables */
	--font-heading: "Montserrat", sans-serif;
	--font-body: "Plus Jakarta Sans", sans-serif;
}

/* Typography Base Styles */
body {
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.6;
}

a {
	color: var(--primary);
	text-decoration: none;
}

a:hover {
	color: var(--secondary);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
}

.lead {
	font-family: var(--font-body);
	font-weight: 500;
}

/* Specific Typography Styles */
.hero-content h1 {
	font-weight: 800;
	letter-spacing: -0.02em;
}

.hero-content .lead {
	font-size: 1.25rem;
	font-weight: 500;
}

.section-header h2 {
	font-weight: 700;
	letter-spacing: -0.01em;
}

.navbar-nav .nav-link {
	font-family: var(--font-heading);
	font-weight: 600;
	letter-spacing: 0.02em;
}

.btn {
	font-family: var(--font-heading);
	font-weight: 600;
	letter-spacing: 0.02em;
}

.price {
	font-family: var(--font-heading);
	font-weight: 700;
}

.card-title {
	font-family: var(--font-heading);
	font-weight: 600;
}

/* Rest of your existing CSS... */

:root {
	--primary: #cf2e26; /* Red - for CTAs and highlights */
	--secondary: #3f4549; /* Grey - for secondary elements */
	--dark: #060606; /* Almost Black - for backgrounds */
	--light: #ffffff; /* White - for text and light elements */
}

body {
}

.single-vehicles .navbar-custom,
.archive .navbar-custom {
	background: var(--primary);
}

.mainContent {
	padding-top: 80px;
}

.navbar-brand {
}
.navbar-brand img {
	max-width: 100px;
	height: auto;
}

.navbar-custom {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	padding: 1rem 0;
	font-size: 1rem;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	background: transparent;
}

.navbar-custom li a {
	color: #999;
}

.navbar-custom li.active a,
.navbar-custom li a:hover,
a:hover,
.navbar-custom li a.focus {
	color: #000;
}

.navbar-toggler {
	border-color: #000;
}

.dropdown-menu {
	margin-top: 10px;
	background: #fff;
	border-top: none;
	border-color: rgba(109, 90, 65, 0.2);
}
.dropdown-menu li a:hover,
.dropdown-menu li.active a {
	background: #000;
	color: #fff;
}

.dropdown-menu[data-bs-popper] {
	margin-top: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	border-radius: 0 0 5px 5px;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-custom li.active a,
.navbar-custom li a:hover,
a,
.btn:focus {
	outline: none;
	box-shadow: none;
}

.btn-site {
}

.btn-site:hover {
}

a {
}

.about-images {
	max-width: 600px;
	margin: 0 auto;
}

.about-images img {
	width: 100%;
	height: auto;
}

/* Hero Section */
#hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	color: var(--light);
	padding: 6rem 0;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(6, 6, 6, 0.85) 0%,
		rgba(63, 69, 73, 0.75) 50%,
		rgba(207, 46, 38, 0.65) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.hero-content h1 span {
	display: block;
	font-size: 1.5rem;
	color: var(--primary);
	margin-top: 0.5rem;
	font-weight: 500;
}

/* Hero Key Points */
.key-points {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.key-points li {
	display: inline-flex;
	align-items: center;
	margin-right: 2rem;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.key-points li i {
	color: var(--primary);
	margin-right: 0.5rem;
}

/* Hero CTA Group */
.cta-group {
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.cta-group .btn {
	padding: 0.8rem 2rem;
	font-weight: 600;
	min-width: 200px;
}

.btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-primary:hover {
	background-color: darken(var(--primary), 10%);
	border-color: darken(var(--primary), 10%);
}

.btn-outline-light {
	border-width: 2px;
}

.btn-outline-light:hover {
	background-color: var(--light);
	color: var(--dark);
}

.footer-bottom ul {
	list-style: none;
	line-height: 10px;
}

.footer-bottom ul li {
	display: inline-block;
	font-size: 10px !important;
	line-height: 17px;
}

.footer-bottom ul li a {
	border-left: 1px solid #fff;
	padding-left: 5px;
	padding-right: 3px;
}

.footer-bottom ul li:first-child a {
	border-left: none;
}

.footer-bottom ul li a:hover {
	color: var(--white);
}

p.copyright {
	display: block;
	font-size: 10px !important;
}

.navigation.posts-navigation h2 {
	display: none;
}

.nav-links {
	display: block;
	border-top: 1px solid var(--primary);
	height: 50px;
}

.nav-links .nav-previous,
.nav-links .nav-next {
	font-size: 1rem;
	font-weight: 500;
	width: 50%;
	float: left;
	text-align: left;
	text-transform: capitalize;
}

.nav-links .nav-next {
	text-align: right;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	#hero {
		padding: 4rem 0;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.key-points li {
		display: block;
		margin-bottom: 1rem;
		text-align: left;
	}

	.cta-group {
		flex-direction: column;
	}

	.cta-group .btn {
		width: 100%;
	}
}

/* Header & Navigation */
.navbar {
	padding: 1rem 0;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.navbar-brand {
	padding: 0;
}

.navbar-brand img {
	max-width: 100px;
	height: auto;
	transition: all 0.3s ease;
}

/* Navigation Links */
.navbar-nav {
	margin-left: auto;
}

.navbar-nav .nav-item {
	margin: 0 0.5rem;
	position: relative;
}

.navbar-nav .nav-link {
	color: var(--secondary);
	font-weight: 500;
	padding: 0.5rem 1rem;
	transition: all 0.3s ease;
	position: relative;
}

.navbar-nav .nav-link:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 1rem;
	right: 1rem;
	height: 2px;
	background: var(--primary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-item.active .nav-link:after {
	transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
	color: var(--primary);
}

/* Dropdown Menus */
.dropdown-menu {
	margin-top: 0.5rem;
	padding: 0.5rem;
	border: none;
	border-radius: 8px;
	background: var(--light);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	display: block;
	transform: translateY(10px);
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	padding: 0.75rem 1.5rem;
	color: var(--secondary);
	font-weight: 500;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
	background: rgba(207, 46, 38, 0.1);
	color: var(--primary);
}

/* Mobile Navigation */
.navbar-toggler {
	border: none;
	padding: 0;
	width: 30px;
	height: 20px;
	position: relative;
	transition: all 0.3s ease;
}

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

.navbar-toggler-icon {
	background: none;
	position: absolute;
	height: 2px;
	width: 100%;
	background: var(--secondary);
	transition: all 0.3s ease;
}

.navbar-toggler-icon:before,
.navbar-toggler-icon:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 100%;
	background: var(--secondary);
	transition: all 0.3s ease;
}

.navbar-toggler-icon:before {
	top: -6px;
}

.navbar-toggler-icon:after {
	bottom: -6px;
}

/* Mobile Menu Open State */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: rotate(45deg);
	top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(-45deg);
	bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.navbar-collapse {
		background: var(--light);
		padding: 1rem;
		border-radius: 8px;
		margin-top: 1rem;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	}

	.navbar-nav .nav-item {
		margin: 0;
	}

	.navbar-nav .nav-link {
		padding: 0.75rem 1rem;
	}

	.dropdown-menu {
		border: none;
		box-shadow: none;
		padding-left: 2rem;
	}

	.navbar-nav .nav-link:after {
		display: none;
	}
}

/* Scroll State */
.navbar.scrolled {
	padding: 0.5rem 0;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand img {
	max-width: 180px;
}

/* Header & Navigation */
.navbar-custom {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	padding: 1rem 0;
	font-size: 1rem;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	background: transparent;
}

/* Logo */
.navbar-brand {
	padding: 0;
}

.navbar-brand img {
	max-width: 80px;
	height: auto;
	transition: all 0.3s ease;
}

/* Navigation Links - Light Version */
.navbar-custom .navbar-nav .nav-link {
	color: var(--light);
	font-weight: 500;
	padding: 0.5rem 1rem;
	transition: all 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover {
	color: var(--light);
	opacity: 0.8;
}

/* Dropdown Styling */
.navbar-custom .dropdown-menu {
	margin-top: 0.5rem;
	background: rgba(255, 255, 255, 0.98);
	border: none;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Scrolled State */
.navbar-custom.scrolled {
	background: var(--secondary);
	padding: 0.75rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-custom.scrolled .navbar-brand img {
	max-width: 80px;
}

/* Mobile Styles */
@media (max-width: 991px) {
	.navbar-custom {
		background: var(--primary);
	}

	.navbar-brand img {
		max-width: 70px;
	}

	.navbar-custom .navbar-collapse {
		background: var(--primary);
		margin-top: 1rem;
		padding: 1rem;
		border-radius: 8px;
	}
}

/* Featured Vehicles Section */
#vehicles {
	padding: 6rem 0;
	background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
	color: var(--light);
}

/* Carousel Container */
.carousel-inner {
	padding: 20px 0 30px;
}

.carousel-item {
	padding: 10px 0 20px;
}

/* Vehicle Cards - Light Theme */
.card {
	background: var(--light);
	border: none;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
	margin: 10px 0 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-img-top {
	height: 240px;
	object-fit: cover;
	border-bottom: 2px solid var(--primary);
}

.card-body {
	padding: 1.5rem;
	color: var(--dark);
}

.card-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	min-height: 2.5rem;
	color: var(--secondary);
}

/* Vehicle Specs - Light Theme */
.vehicle-specs {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.vehicle-specs span {
	display: inline-flex;
	align-items: center;
	background: rgba(63, 69, 73, 0.1);
	padding: 0.4rem 0.8rem;
	border-radius: 20px;
	font-size: 0.9rem;
	color: var(--secondary);
}

.vehicle-specs i {
	color: var(--primary);
	margin-right: 0.5rem;
}

/* Price - Light Theme */
.price {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	margin: 1rem 0;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
	width: 50px;
	height: 50px;
	background: var(--primary);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.7;
}

.carousel-control-prev {
	left: -25px;
}

.carousel-control-next {
	right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
	opacity: 1;
}

/* View All Button */
.btn-outline-primary {
	border: 2px solid var(--primary);
	color: var(--light);
	padding: 1rem 2.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 3rem;
}

.btn-outline-primary:hover {
	background: var(--primary);
	color: var(--light);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(207, 46, 38, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	#vehicles {
		padding: 4rem 0;
	}

	.carousel-control-prev,
	.carousel-control-next {
		display: none;
	}

	.card-img-top {
		height: 200px;
	}
}

/* Key Features Section */
#features {
	padding: 6rem 0;
	background: var(--light);
	position: relative;
	overflow: hidden;
}

#features::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 400px;
	background: var(--primary);
	opacity: 0.03;
	border-radius: 50%;
	transform: translate(200px, -200px);
}

/* Feature Box */
.feature-box {
	padding: 2.5rem;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.feature-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--secondary) 100%
	);
	opacity: 0;
	z-index: -1;
	transition: opacity 0.3s ease;
}

.feature-box:hover {
	transform: translateY(-10px);
	color: var(--light);
}

.feature-box:hover::before {
	opacity: 1;
}

/* Feature Icon */
.feature-icon {
	min-width: 70px;
	width: 70px;
	height: 70px;
	background: rgba(207, 46, 38, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1.5rem;
	transition: all 0.3s ease;
}

.feature-icon i {
	font-size: 2rem;
	color: var(--primary);
	transition: all 0.3s ease;
	line-height: 1;
}

.feature-box:hover .feature-icon {
	background: rgba(255, 255, 255, 0.2);
}

.feature-box:hover .feature-icon i {
	color: var(--light);
}

/* Feature Content */
.feature-box h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.feature-box p {
	margin-bottom: 0;
	line-height: 1.6;
	transition: all 0.3s ease;
}

/* CTA Box */
.cta-box {
	margin-top: 4rem;
	padding: 3rem;
	background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
	border-radius: 15px;
	color: var(--light);
	text-align: center;
}

.cta-box h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	#features {
		padding: 4rem 0;
	}

	.feature-box {
		margin-bottom: 2rem;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-buttons .btn {
		width: 100%;
	}
}

/* Bootstrap Color Overrides */
.btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: var(--secondary) !important;
	border-color: var(--secondary) !important;
	color: var(--light) !important;
}

.btn-outline-primary {
	color: var(--primary);
	border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
	color: var(--light) !important;
}

.card {
	border-color: var(--secondary);
}

.border-primary {
	border-color: var(--primary) !important;
}

.bg-primary {
	background-color: var(--primary) !important;
}

.text-primary {
	color: var(--primary) !important;
}

/* Form Controls */
.form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 0.25rem rgba(207, 46, 38, 0.25);
}

/* Dropdown Menus */
.dropdown-item.active,
.dropdown-item:active {
	background-color: var(--primary);
	color: var(--light);
}

/* Pagination */
.page-link {
	color: var(--primary);
}

.page-link:hover {
	color: var(--secondary);
	border-color: var(--secondary);
}

.page-item.active .page-link {
	background-color: var(--primary);
	border-color: var(--primary);
}

/* List Groups */
.list-group-item.active {
	background-color: var(--primary);
	border-color: var(--primary);
}

/* Card Buttons */
.card .btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--light);
	width: 100%;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.card .btn-primary:hover,
.card .btn-primary:focus,
.card .btn-primary:active {
	background-color: var(--light) !important;
	border-color: var(--light) !important;
	color: var(--primary) !important;
}

/* View All Button */
#vehicles .btn-outline-primary {
	background: transparent;
	border: 2px solid var(--light);
	color: var(--light);
	padding: 1rem 2.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 3rem;
}

#vehicles .btn-outline-primary:hover,
#vehicles .btn-outline-primary:focus,
#vehicles .btn-outline-primary:active {
	background: var(--light) !important;
	border-color: var(--light) !important;
	color: var(--primary) !important;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Box Buttons */
.cta-box .btn {
	padding: 0.75rem 1.5rem;
	margin: 0;
	font-weight: 600;
	min-width: 200px;
}

.cta-box .d-flex {
	margin-bottom: 0;
}

.cta-box .btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--light);
}

.cta-box .btn-outline-primary {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
}

.cta-box .btn-primary:hover,
.cta-box .btn-primary:focus,
.cta-box .btn-primary:active {
	background-color: var(--secondary);
	border-color: var(--secondary);
	color: var(--light);
}

.cta-box .btn-outline-primary:hover,
.cta-box .btn-outline-primary:focus,
.cta-box .btn-outline-primary:active {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--light);
}

/* Vehicle Cards - Light Theme */
.card {
	background: var(--light);
	border: none;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
	margin: 10px 0;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-body {
	padding: 1.5rem;
	color: var(--dark);
}

.card-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	min-height: 2.5rem;
	color: var(--secondary);
}

/* Vehicle Specs - Light Theme */
.vehicle-specs span {
	display: inline-flex;
	align-items: center;
	background: rgba(63, 69, 73, 0.1);
	padding: 0.4rem 0.8rem;
	border-radius: 20px;
	font-size: 0.9rem;
	color: var(--secondary);
}

.vehicle-specs i {
	color: var(--primary);
	margin-right: 0.5rem;
}

/* Price - Light Theme */
.price {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	margin: 1rem 0;
}

/* Card Button - Light Theme */
.card .btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--light);
	width: 100%;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.card .btn-primary:hover {
	background-color: var(--secondary);
	border-color: var(--secondary);
	transform: translateY(-2px);
}

/* About Section */
#about {
	padding: 6rem 0;
	background: linear-gradient(135deg, var(--light) 0%, #f8f9fa 100%);
	position: relative;
	overflow: hidden;
}

/* Experience Badge */
.experience-badge {
	display: inline-flex;
	align-items: center;
	background: var(--primary);
	color: var(--light);
	padding: 1rem 2rem;
	border-radius: 50px;
	margin-bottom: 2rem;
}

.experience-badge .number {
	font-size: 2.5rem;
	font-weight: 700;
	margin-right: 1rem;
	line-height: 1;
}

.experience-badge .text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.2;
}

/* About Content */
.about-content {
	padding: 2rem;
}

.about-content h3 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 1.5rem;
}

.about-content .lead {
	color: var(--secondary);
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

/* Key Points Grid */
.key-points {
	margin: 3rem 0;
}

.point-item {
	background: var(--light);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.point-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.point-item i {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 1rem;
}

.point-item h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 0.5rem;
}

.point-item p {
	color: var(--secondary);
	margin-bottom: 0;
	font-size: 0.9rem;
	flex-grow: 1;
}

/* Customer Quote */
.customer-quote {
	background: var(--light);
	padding: 2rem;
	border-radius: 15px;
	border-left: 4px solid var(--primary);
	margin: 3rem 0;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.customer-quote p {
	font-size: 1.1rem;
	font-style: italic;
	color: var(--secondary);
	margin-bottom: 1rem;
}

.customer-quote cite {
	color: var(--primary);
	font-weight: 600;
	font-style: normal;
}

/* About Images */
.about-images {
	position: relative;
	max-width: 600px;
	margin: 0 auto;
}

.about-images img {
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-images .row {
	margin-top: 1rem;
}

/* About CTA */
.about-cta {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	align-items: center;
}

.about-cta .btn {
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	margin: 0;
	min-width: 200px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.about-cta .btn i {
	margin: 0;
}

.about-cta .btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--light);
}

.about-cta .btn-outline-primary {
	border: 2px solid var(--primary);
	color: var(--primary);
}

.about-cta .btn-primary:hover {
	background-color: var(--secondary);
	border-color: var(--secondary);
}

.about-cta .btn-outline-primary:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--light);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	#about {
		padding: 4rem 0;
	}

	.about-content {
		padding: 1rem;
		text-align: center;
	}

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

	.about-cta {
		justify-content: center;
	}

	.point-item {
		margin-bottom: 1rem;
	}
}

/* Contact Section */
#contact {
	padding: 6rem 0;
	background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
	color: var(--light);
	position: relative;
}

/* Contact Cards */
.contact-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 2.5rem;
	height: 100%;
	transition: all 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Featured Card (Middle) */
.contact-card.featured {
	background: var(--primary);
	border-color: var(--primary);
}

.contact-card.featured:hover {
	transform: translateY(0) !important;
}

/* Card Icons */
.card-icon {
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.card-icon i {
	font-size: 2rem;
	color: var(--light);
}

/* Card Content */
.contact-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.contact-card address {
	font-style: normal;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

/* Opening Times */
.opening-times {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.opening-times .badge {
	background: rgba(255, 255, 255, 0.1);
	padding: 0.5rem 1rem;
	margin-bottom: 1rem;
	font-weight: 500;
}

.hours-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hours-list li {
	margin-bottom: 0.5rem;
	display: flex;
	justify-content: space-between;
}

/* Contact Links */
.contact-number {
	text-align: center;
	margin: 2rem 0;
}

.phone-link {
	font-size: 2rem;
	font-weight: 700;
	color: var(--light);
	text-decoration: none;
	display: block;
	transition: all 0.3s ease;
}

.phone-link:hover {
	color: rgba(255, 255, 255, 0.8);
	transform: scale(1.05);
}

.contact-email {
	text-align: center;
}

.contact-email a {
	color: var(--light);
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.contact-email a:hover {
	opacity: 1;
}

/* Response Badge */
.response-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	margin: 0 auto;
}

.response-badge i {
	margin-right: 0.5rem;
}

/* Demo Benefits */
.demo-benefits {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.demo-benefits li {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.demo-benefits li i {
	color: var(--primary);
	margin-right: 0.75rem;
}

/* Map Section */
.map-section {
	background: var(--light);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-info {
	padding: 2rem;
	color: var(--secondary);
}

.location-badge {
	display: inline-flex;
	align-items: center;
	background: var(--primary);
	color: var(--light);
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	margin-bottom: 1rem;
}

.location-features {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
}

.location-features li {
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
}

.location-features li i {
	color: var(--primary);
	margin-right: 0.75rem;
	width: 20px;
}

/* Map Container */
.map-container {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 500px;
}

.map-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 0 15px 15px 0;
}

/* Social Proof */
.social-proof {
	margin-top: 4rem;
}

.review-badges {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.review-item {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
}

.review-item i {
	color: var(--primary);
	margin-right: 0.75rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	#contact {
		padding: 4rem 0;
	}

	.contact-card.featured {
		transform: translateY(0);
	}

	.contact-card {
		margin-bottom: 2rem;
	}

	.map-container {
		min-height: 400px;
	}

	.map-container iframe {
		border-radius: 0 0 15px 15px;
	}

	.review-badges {
		gap: 1rem;
	}

	.review-item {
		width: 100%;
		justify-content: center;
	}
}

/* Footer Styles */
.site-footer {
	background: var(--dark);
	color: var(--light);
	position: relative;
}

.footer-main {
	padding: 5rem 0 3rem;
}

/* Footer Top */
.footer-top {
	position: relative;
	padding-bottom: 3rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
	max-width: 180px;
	height: auto;
	margin-bottom: 2rem;
}

/* Contact Bar */
.footer-contact-bar {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-item i {
	color: var(--primary);
	font-size: 1.2rem;
}

.contact-item a,
.contact-item span {
	color: var(--light);
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.contact-item a:hover {
	opacity: 1;
	color: var(--primary);
}

/* Footer Cards */
.footer-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 2rem;
	height: 100%;
	backdrop-filter: blur(10px);
}

.footer-card h3 {
	color: var(--light);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer-card h3 i {
	color: var(--primary);
}

/* Two Column Menu */
.two-column {
	column-count: 2;
	column-gap: 2rem;
}

/* Opening Hours */
.opening-hours {
	list-style: none;
	padding: 0;
	margin: 0;
}

.opening-hours li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.opening-hours li:last-child {
	border-bottom: none;
}

/* Footer Menu */
.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 0.8rem;
}

.footer-menu a {
	color: var(--light);
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.3s ease;
	display: block;
	align-items: center;
}

.footer-menu a:before {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 0.8rem;
	margin-right: 0.5rem;
	color: var(--primary);
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.3s ease;
}

.footer-menu a:hover {
	opacity: 1;
	color: var(--primary);
}

.footer-menu a:hover:before {
	opacity: 1;
	transform: translateX(0);
}

/* Social Links */
.social-links {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.2rem;
}

.social-link:hover {
	background: var(--primary);
	color: var(--light);
	transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
	background: rgba(0, 0, 0, 0.3);
	padding: 1.5rem 0;
	position: relative;
}

/* Responsive */
@media (max-width: 991px) {
	.footer-contact-bar {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.footer-card {
		margin-bottom: 2rem;
	}

	.two-column {
		column-count: 1;
	}
}

/* Vehicle Gallery Carousel */
.vehicle-gallery-carousel {
	position: relative;
}

.vehicle-gallery-carousel .carousel {
	margin-bottom: 1rem;
}

.vehicle-gallery-carousel .carousel-item {
	transition: transform 0.6s ease-in-out;
}

.vehicle-gallery-carousel .carousel-item img {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 16/9;
}

/* Carousel Controls */
.vehicle-gallery-carousel .carousel-control-prev,
.vehicle-gallery-carousel .carousel-control-next {
	width: 5%;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	height: 40px;
	width: 40px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.vehicle-gallery-carousel:hover .carousel-control-prev,
.vehicle-gallery-carousel:hover .carousel-control-next {
	opacity: 1;
}

/* Thumbnail Gallery */
.vehicle-gallery-carousel .thumbnail-gallery {
	padding: 0.5rem;
}

.vehicle-gallery-carousel .thumbnail-wrapper {
	position: relative;
	padding-top: 75%; /* 4:3 Aspect Ratio */
	overflow: hidden;
	border-radius: 0.375rem;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.vehicle-gallery-carousel .thumbnail-wrapper:hover {
	transform: translateY(-2px);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.vehicle-gallery-carousel .thumbnail-wrapper.active {
	border-color: var(--bs-primary);
}

.vehicle-gallery-carousel .thumbnail-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.vehicle-gallery-carousel .thumbnail-wrapper:hover img {
	transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.vehicle-gallery-carousel .carousel-control-prev,
	.vehicle-gallery-carousel .carousel-control-next {
		opacity: 1;
		height: 30px;
		width: 30px;
	}

	.vehicle-gallery-carousel .thumbnail-wrapper {
		padding-top: 66.67%; /* 3:2 Aspect Ratio for mobile */
	}
}
