/* Pastikan row berperilaku sebagai flex container dengan equal height */
.row.equal-height {
	display: flex;
	align-items: stretch;
}

/* Buat kedua kolom fleksibel agar bisa mengisi tinggi */
.col-md-8, .col-md-4 {
	display: flex;
	flex-direction: column;
}

/* Jika diperlukan, buat konten di kolom teks mengembang agar memenuhi tinggi */
.container-title,
.container-content, .container-content h2 {
	flex: 1;
	/* margin: 20px 0; */
	margin-top: 20px;
	color: #000;
}

.container-content h2 {
	font-weight: 800 !important;
}

.text-blue {
	font-weight: 800 !important;
	color: #007bff !important;
}

.container-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Styling dasar untuk card */
.card {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
	height: 270px;
}

.card, .card h4 {
	color: #000;
}

.card:hover {
	transform: translateY(-5px);
}

.card img {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	width: 100px;
	height: auto;
	margin: auto;
	display: block;
}

.card .card-body {
	flex: 1;
	padding: 15px;
}

.card .card-body h4 {
	text-align: center;
}

@media (max-width: 768px) {
	.container-image {
		margin-bottom: 20px;
	}

	.card {
		height: auto;
	}

	.card .card-body {
		padding: 10px;
		text-align: center;
	}
}

.wrapper_contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 10px;
}

.container-phone {
	padding: 15px 0 !important;
	background-color: #F3F4F6 !important;
}

.container-button {
	padding: 15px 0 !important;
}

.container-phone img {
	max-height: 50px;
}

.container-phone h5 {
	margin-top: 10px !important;
	font-weight: 800 !important;
	color: #000 !important;
}

.wrapper_button_contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.container-icon {
	background-color: #F3F4F6;
	width: 120px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.container-icon i {
	font-size: 40px;
}

@media (min-width: 768px) {
	.icon-container {
		width: 120px;
		height: 120px;
	}
}

.text-red {
	font-size: 16px;
	font-weight: 600;
	color: #dc3545 !important;
}

.wrapper_cutomer_support {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.wrapper_cutomer_support_button {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	width: 100%;
}

.button_customer_support {
	color: #fff;
	border: none;
	border-radius: 5px;
	width: 100%;
}

.button_customer_support a {
	color: #fff;
	width: 100%;
}

.btn_telepon {
	background-color: #FF5A1F !important;
	border: none !important;
}

.btn_telepon:hover {
	background-color: #ce5529 !important;
}

.btn_whatsapp {
	background-color: #18B512 !important;
	border: none !important;
}

.btn_whatsapp:hover {
	background-color: #0f8a0f !important;
}

.btn_used_car {
	background-color: #AD1E1E !important;
	border: none !important;
}

.btn_used_car:hover {
	background-color: #8a1a1a !important;
}

@media (min-width: 468px) {
	.wrapper_button_contact {
		flex-direction: row;
	}
}
