* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Inter, Arial, sans-serif;
}

body {
	background-color: #f5f5f5;
}

/* Header */
header {
	background-color: #000;
	color: white;
	padding: 10px 0;
}

.top-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

.logo {
	font-weight: bold;
	font-size: 18px;
}

.logo span {
	display: block;
	font-size: 12px;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 20px;
}

.nav-menu a {
	color: white;
	text-decoration: none;
	font-size: 14px;
}

.contact-btn {
	background-color: #e63946;
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	margin-left: 20px;
}

/* Hero Section */
.hero {
	width: 100%;
	height: 400px;
	background-image: url('https://images.pexels.com/photos/14378766/pexels-photo-14378766.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
	background-size: cover;
	background-position: center;
	position: relative;
}

/* Brands Section */
.brands {
	background-color: #f5f5f5;
	padding: 20px 0;
	text-align: center;
}

.brands p {
	margin-bottom: 20px;
	font-size: 14px;
}

.brand-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	max-width: 800px;
	margin: 0 auto;
}

.brand-logo {
	width: 80px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.brand-logo img {
	max-width: 100%;
	max-height: 100%;
}

/* Promotions Section */
.promotions {
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.promotions h2 {
	margin-bottom: 20px;
	font-size: 24px;
}

.filters {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.filter-btn {
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	cursor: pointer;
}

.filter-btn.active {
	background-color: #333;
	color: white;
}

.car-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.car-card {
	background-color: white;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.car-image {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.car-details {
	padding: 15px;
}

.car-title {
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 16px;
}

.car-category {
	color: #666;
	font-size: 12px;
	margin-bottom: 10px;
}

.car-specs {
	border: 1px solid #eee;
	padding: 10px;
	margin-bottom: 10px;
	font-size: 12px;
}

.car-price {
	font-size: 12px;
	margin-bottom: 10px;
}

.view-details {
	color: #333;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	display: inline-block;
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.page-btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #eee;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.page-btn.active {
	background-color: #333;
	color: white;
}

/* Service Section */
.service {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 40px;
}

.service-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-content {
	background-color: #333;
	color: white;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.service-content h3 {
	font-size: 14px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.service-content h2 {
	font-size: 24px;
	margin-bottom: 20px;
}

.service-content p {
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 1.5;
}

.service-btn {
	color: white;
	text-decoration: none;
	font-size: 14px;
	display: inline-block;
}

/* Used Cars Section */
.used-cars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 40px;
}

.used-cars-content {
	background-color: #333;
	color: white;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.used-cars-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Benefits Section */
.benefits {
	background-color: #2c4b8e;
	color: white;
	padding: 40px 20px;
}

.benefits-header {
	max-width: 1200px;
	margin: 0 auto 30px;
}

.benefits-header h2 {
	font-size: 24px;
	margin-bottom: 10px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.benefit-card {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 20px;
	border-radius: 5px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.benefit-icon {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
}

.benefit-content h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.benefit-content p {
	font-size: 14px;
	line-height: 1.5;
}

/* Map Section */
.map {
	width: 100%;
	height: 400px;
}

/* Footer */
footer {
	background-color: #000;
	color: white;
	padding: 40px 20px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.footer-column h3 {
	font-size: 18px;
	margin-bottom: 20px;
}

.footer-column p,
.footer-column a {
	color: #aaa;
	font-size: 14px;
	margin-bottom: 10px;
	display: block;
	text-decoration: none;
}

.footer-logos {
	display: flex;
	gap: 20px;
	margin-block: 20px;
	justify-content: center;
}

.footer-logos img {
	height: 30px;
}

.footer-bottom {
	max-width: 1200px;
	margin: 40px auto 0;
	padding-top: 20px;
	border-top: 1px solid #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #aaa;
}

.social-icons {
	display: flex;
	gap: 10px;
}

.social-icon {
	width: 30px;
	height: 30px;
	background-color: #333;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-decoration: none;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.modal-content {
	background-color: white;
	padding: 30px;
	border-radius: 5px;
	width: 90%;
	max-width: 500px;
	position: relative;
}

.close-modal {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	cursor: pointer;
	color: #333;
}

.form-group {
	margin-bottom: 20px;
}

fieldset {
	border: none;
}

fieldset[disabled=true],
fieldset[disabled] {
	animation: fadeOpacity 2s ease-in-out infinite alternate;
	opacity: .8;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 14px;
}

.form-group select,
.form-group input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

#cot-form {
	max-width: 900px;
	margin-inline: auto;
}

#cot-form .form-group {
	margin-bottom: 0 !important;
	width: 270px;
}

.submit-btn {
	background-color: #e63946;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	width: 100%;
}

.environment-container{
	width:100% !important;
	display:flex;
	flex-direction:column;
	align-items:center;
	margin-top:20px;
}

.switch-wrapper{
	display:flex;
	align-items:center;
	gap:12px;
	font-weight:600;
}

.switch{
	position:relative;
	display:inline-block;
	width:56px;
	height:30px;
}

.switch input{
	opacity:0;
	width:0;
	height:0;
}

.slider{
	position:absolute;
	cursor:pointer;
	inset:0;
	background:#ccc;
	border-radius:30px;
	transition:.3s;
}

.slider:before{
	content:"";
	position:absolute;
	height:22px;
	width:22px;
	left:4px;
	bottom:4px;
	background:white;
	border-radius:50%;
	transition:.3s;
}

.switch input:checked + .slider{
	background:#28a745;
}

.switch input:checked + .slider:before{
	transform:translateX(26px);
}

.environment-info{
	margin-top:10px;
	text-align:center;
	color:#666;
	line-height:1.5;
	max-width:500px;
}