.carpet-booking-hero-section {
	height: auto;
	width: 100%;
	position: relative;
	background: url("../images/contact-hero.webp") no-repeat center center;
	/* padding: 60px 0; */
	z-index: 1;
}
.carpet-booking-hero-section-overlay {
	background-color: rgba(4, 36, 92, 0.9);
	/* #04245c with opacity */
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.carpet-booking-hero-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.carpet-booking-hero-content-title {
	text-align: center;
	font-size: 45px;
	font-weight: bold;
}
.carpet-booking-hero-content p {
	text-align: center;
	font-size: 20px;
	color: white;
}
.carpet-booking-hero-content button {
	background-color: red;
	color: white;
	padding: 8px 30px;
	border-radius: 5px;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
	border: none;
}

/* Responsive  */
@media (max-width: 992px) {
	.carpet-booking-hero-section {
		height: auto;
		background-size: cover;
	}

	.carpet-booking-hero-content-title {
		font-size: 32px;
	}
	.carpet-booking-hero-content {
		padding: 30px 21px;
	}

	.carpet-booking-hero-content p {
		font-size: 18px;
		margin: 10px 0;
		text-align: center;
	}

	.carpet-booking-hero-content button {
		font-size: 16px;
		padding: 10px 25px;
	}
}

@media (max-width: 576px) {
	.carpet-booking-hero-content-title {
		font-size: 24px;
	}

	.carpet-booking-hero-content p {
		font-size: 16px;
	}

	.carpet-booking-hero-content button {
		width: 100%;
		max-width: 280px;
		padding: 10px;
	}
}

/* Responsive  */
/* -----------------------------------------------------------------  */

/* form  */
.carpet-booking-form {
	width: 100%;
	max-width: 1100px;
	margin: auto;
}
.form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 20px;
}
.form-row input,
.form-row textarea {
	flex: 1;
	padding: 12px;
	border-radius: 6px;
	border: none;
	width: 100%;
}
textarea {
	resize: vertical;
	min-height: 120px;
}
.form-row.toggles label {
	display: flex;
	align-items: center;
	gap: 6px;
	color: white;
	font-size: 14px;
	white-space: nowrap;
}
.submit-btn {
	background-color: #ff0201;
	color: white;
	padding: 10px 30px;
	border-radius: 6px;
	border: none;
	font-weight: bold;
	font-size: 16px;
	transition: 0.3s ease;
}
.submit-btn:hover {
	background-color: #c50101;
}

@media (max-width: 768px) {
	.form-row {
		flex-direction: column;
	}
}
/* form  */

/* Dynamic Sofa Size Field Wrapper */
.border-box {
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 15px 20px;
	margin-bottom: 15px;
	background-color: #f9f9f9;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Label inside each dynamic dropdown block */
.border-box label {
	font-weight: 600;
	color: #333;
	display: block;
	margin-bottom: 8px;
}

/* Dynamic select and input fields */
.border-box select,
.border-box input[type="text"] {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 15px;
	background-color: #fff;
	outline: none;
	transition: border 0.2s ease;
}

.border-box select:focus,
.border-box input[type="text"]:focus {
	border-color: #007bff;
}
