.block-11-car-hero {
	margin-bottom: 40px;
}

.color-wrap {
    background: #FB9B4C;
background: linear-gradient(180deg, rgba(251, 155, 76, 1) 0%, rgba(251, 155, 76, 1) 80%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
	overflow: hidden;
	position: relative;
	padding-top: 3rem;
}

/* ========================================
   Auto Carousel
   ======================================== */

@keyframes carouselSlideIn {
	from {
		transform: translateX(120px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.car-carousel {
	background: linear-gradient(360deg, #fb9b4c, transparent);
	overflow: hidden;
}
.carousel-container {
	display: flex;
	gap: 10px;
	padding: 0 15px;
	justify-content: space-between;
	min-height: 80px;
	margin: 0 -50px;
	padding-left: calc(15px + 50px);
	padding-right: calc(15px + 50px);
	animation: carouselSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.carousel-item {
	flex-shrink: 0;
	text-align: center;
}

.carousel-item img.auto-img {
	max-height: 90px;
	width: auto;
	object-fit: contain;
}

/* ========================================
   Main Content Area
   ======================================== */

.car-hero-content {
	padding: 40px 0;
	background-color: #FF9500;
	color: #fff;
}

/* Header Section */
.header-section {
	margin-bottom: 30px;
	text-align: center;
}

.hero-headline {
	font-size: 24px;
	font-weight: 550;
	line-height: 1.4;
	margin-bottom: 15px;
}

.region-highlight {
	background-color: #F97100;
	color: #fff;
	padding: 5px 10px;
	display: inline-block;
	margin-left: 5px;
}

/* USP List */
.usp-list {
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
	text-align: center;
	font-size: 13px;
}

.usp-list li {
	display: inline-block;
	margin: 5px 15px;
}

.usp-list .checkmark {
	font-weight: bold;
	margin-right: 5px;
}

/* Tagline Section */
.tagline-section {
	margin-bottom: 40px;
	text-align: center;
    background: #FFB272;
    transform: rotate(-2deg);
}

.tagline {
	font-size: 28px;
	font-weight: 550;
	color: #F97100;
	margin: 0;
	line-height: 1.3;
}

/* ========================================
   Main Content Row (Form + Widget)
   ======================================== */

.bewertungs-wrapper {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.form-title {
	font-weight: 500;
}

.form-disclaimer {
	font-size: 1.2rem;
	margin: 10px 0 0 0;
	font-weight: bold;
}

/* Widget Column */
.widget-column {
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}

.widget-column::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #F97100;
	clip-path: polygon(0% 0, 101% 0, 101% 100%, 0% 100%);
	z-index: 0;
}

/* Widget Image */
.widget-image {
	margin-top: auto;
	padding: 0;
}

.contact-photo {
	width: 100%;
	max-width: 200px;
	height: auto;
	border-radius: 8px;
	object-fit: cover;

}

/* Google Rating */
.google-rating {
	background: #fff;
	border-radius: var(--borderRadius);
	padding: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	width: fit-content;
	margin-bottom: 1em;
}

.google-rating .google-logo {
	width: 25px;
}

.google-rating .google-bewertungen {
	width: 120px;
}

/* Testimonial */

.testimonial-text {
    font-size: 2.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Contact Info */

.contact-name {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 12px;
	color: #fff;
}

.contact-detail {
	font-size: 12px;
	margin: 6px 0;
	color: #fff;
}

.contact-detail a {
	color: #fff;
	text-decoration: none;
	font-weight: 550;
}

.contact-detail a:hover {
	text-decoration: underline;
}

.contact-widget {
	display: flex;
	color: #fff;
	position: relative;
	z-index: 1;
	height: 100%;
	padding: 1em 1em 0 1em;
}

.contact-widget-content {
	padding: 1em 2em 2em 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}


.contact-detail img {
	width: 20px;
}

	.form-wrapper {
		padding: 1em;
	}

/* ========================================
   Responsive Design (Tablet+)
   ======================================== */

@media (min-width: 768px) {

	.widget-column::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #F97100;
	clip-path: polygon(25% 0, 101% 0, 101% 100%, 0% 100%);
	z-index: 0;
}
	.car-hero-content {
		padding: 50px 0;
	}

	.header-section {
		margin-bottom: 40px;
	}

	.hero-headline {
		font-size: 32px;
	}

	.usp-list {
		font-size: 14px;
	}

	.tagline-section {
		margin-bottom: 50px;
	}

	.tagline {
		font-size: 36px;
	}

	.main-content {
		flex-direction: row;
		gap: 40px;
	}

	.form-column,
	.widget-column {
		flex: 1;
	}

.form-wrapper {
		padding: 2em;
	}

	.contact-photo {
		max-width: 300px;
	}

	.widget-image {
		order: -1;
	}
}

@media (min-width: 992px) {
	.hero-headline {
		font-size: 40px;
	}

	.tagline {
		font-size: 44px;
	}

	.carousel-item img.auto-img {
		max-height: 180px;
	}
}

@media (max-width: 768px) {
	.contact-widget {
		padding-bottom: 9em;
	}

	.widget-image {
		    position: absolute;
    bottom: 0;
    right: 0;
	}
}

@media (max-width: 312px) { 
	.contact-widget {
		flex-direction:column;
		padding-bottom: 0em;
	}

	.widget-image {
		position:relative;
	}
}