:root {
	--bs-white: #ffffff;
	--bs-primary: #124463;
}
/*top hero section start*/
.hero-split {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	max-height: 600px;
	overflow: hidden;
	position: relative;
}

/* Left side image */
.hero-split__image {
	flex: 1;
	min-height: 600px; /* ensure height in desktop */
}
.hero-split__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
	object-position: center;
	display: block;
}

/* Right side content */
.hero-split__content {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px;
	color: #124463;
	background: #fff; /* added background so text never overlaps image */
	z-index: 2;
	position: relative;
}
.hero-split__inner {
	text-align: left;
}
.hero-split__inner h1 {
	font-size: 2.4rem;
	margin-bottom: 20px;
}
.hero-split__inner p {
	font-size: 1.1rem;
	line-height: 1.5;
	margin-bottom: 25px;
}
.hero-split__btn {
	display: inline-block;
	padding: 14px 30px;
	background: #fff;
	color: #124463;
	font-weight: bold;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: 2px solid #124463;
}
.hero-split__btn:hover {
	color: #fff;
	background: #124463;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
	.hero-split {
		flex-direction: column;
		max-height: unset; /* remove fixed height */
	}

	.hero-split__image {
		/* min-height: 250px; give fixed safe height for mobile */
		min-height: unset;
		max-height: 300px;
	}

	.hero-split__image img {
		clip-path: none; /* remove slant */
		object-position: center;
	}

	.hero-split__content {
		padding: 30px 20px;
		text-align: center;
		background: #fff; /* ensure white background always */
	}

	.hero-split__inner h1 {
		font-size: 1.8rem;
	}

	.hero-split__inner p {
		font-size: 1rem;
	}
}

/*top hero section end*/

/*booking form start*/
#loading {
	display: none;
	margin: auto;
	width: 40px;
	height: 40px;
	border: 5px solid #fff;
	border-radius: 50%;
	border-top: 5px solid #124463;
	width: 40px;
	height: 40px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*collapsible start*/
.collapsible-legend {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
	padding: 0.25rem 0;
}

.collapsible-legend .chev {
	transition: transform 0.2s ease;
}

.collapsible-legend[aria-expanded="true"] .chev {
	transform: rotate(180deg);
}
/*collapsible end*/

.form-section {
	background-color: #f4f7f6;
}
.form-section h2 {
	text-align: center;
	color: var(--bs-primary);
}

.form-section h3,
.form-section h4,
.form-section h5,
.form-section strong {
	color: var(--bs-primary);
}

.additional-services {
	display: flex;
	justify-content: space-between;
}

.additional-services .form-check {
	flex: 1;
	margin-right: 10px;
}

.additional-services .form-check:last-child {
	margin-right: 0;
}

.additional-services .form-check label {
	font-size: 17px;
}

.additional-services .form-check .checkbox-wrapper-41 {
	display: flex;
	align-items: center;
}

@media screen and (max-width: 700px) {
	.additional-services {
		display: block;
	}
}

.newstylecard {
	background-color: #faf9f6;
	padding: 20px;
	border-radius: 5px;
	/* Rounded corners */
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.extraservice .card:hover {
	background-color: #f5f5f5;
	border: 1px solid #124463;
	cursor: pointer;
}

.extraservice .card.selected {
	/* background-color: #dbe9f4; */
	background-color: #124463;
	color: white;
	/* Light blue background for selected card */
	border: 2px solid #124463;
	/* Highlight border for selected card */
}

.extraservice .card.selected svg path {
	/* fill: white; */

	stroke: white;
}

.extraservice .carptecard.selected svg path {
	fill: white;
	/* color: white; */
	/* stroke: black; */
	stroke: none;
}

fieldset {
	border: none;
	margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
	fieldset {
		margin-bottom: 10px;
	}
}
legend {
	font-size: 18px;
	color: #124463;
	/* font-weight: bold; */
	/* margin-bottom: 10px; */
	border-bottom: 1.5px solid #124463;
	/* padding-bottom: 5px; */
}

label {
	/* display: block; */
	/* margin-bottom: 8px; */
	font-size: 15px;

	/* font-weight: 500; */
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="number"],
textarea,
select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	/* margin-bottom: 15px; */
	font-size: 15px;
}

.language-checklist .form-check {
	margin-bottom: 5px;
	padding-left: 1.5rem;
	display: flex;
	align-items: center;
}

.language-checklist .form-check label {
	display: inline-block;
	font-size: 18px;
	margin-bottom: 0;
}

.language-checklist .form-check input {
	margin-right: 8px;
}
.phone-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.phone-group input[type="number"] {
	margin-bottom: 0px;
}
.quick-contact-content h3 {
	font-size: 1rem;
}
.quick-contact-btn {
	font-size: 0.8rem;
	padding: 0.5rem 1rem;
}

.checkbox-row {
	display: flex;
	justify-content: space-evenly; /* left + right align */
	align-items: center;
	gap: 20px; /* space between if needed */
}

.mycheckboxnew {
	display: flex;
	align-items: center;
	margin: 0; /* reset extra margins */
}

.mycheckboxnew label {
	margin: 0;
}
@media screen and (max-width: 600px) {
	.checkbox-row {
		display: block;
	}
}
.language-checklist {
	display: flex;
	gap: 70px;
	align-items: flex-start; /* was: center  ✅ keep items top-aligned */
	justify-content: center;
}
.other-language {
	display: flex;
	flex-direction: column;
}
@media screen and (max-width: 600px) {
	.language-checklist {
		display: block;
		margin-left: 20px;
	}
}
.form-check-input {
	margin: 0px;
}

/* ✅ Mobile responsive tweak */
@media (max-width: 768px) {
	.phone-group {
		flex-direction: column; /* stack vertically */
		align-items: stretch; /* full width */
	}

	.phone-group select,
	.phone-group input,
	.mycheckboxnew {
		width: 100%;
	}

	.mycheckboxnew {
		margin-top: 8px;
		justify-content: flex-start;
	}
}

.cleaning-info {
	margin-top: 5px;
	font-size: 17px;
}



.property-type-items .form-check {
	margin-bottom: 5px;
	padding-left: 1.5rem;
	display: flex;
	align-items: center;
}

.property-type-items .form-check label {
	display: inline-block;
	font-size: 18px;
	margin-bottom: 0;
}

.property-type-items .form-check input {
	margin-right: 8px;
}




/* Floor Card Styles */
.floor-card {
    display: block;
    border: 2px solid #ccc;
    border-radius: 10px;
    text-align: center;
    padding: 5px;
    cursor: pointer;
    background: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Hide radios */
.floor-card input[type="radio"] {
    display: none;
}

/* Default label style inside card */
.floor-label {
    display: block;
    width: 100%;
    color: #124463;
    transition: all 0.3s ease-in-out;
}

/* Selected Card */
.floor-card input[type="radio"]:checked ~ .floor-label {
    background: #124463;
    color: #fff;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.floor-card:hover {
    border-color: #124463;
    transform: translateY(-2px);
}

/* Responsive Grid */
.floor-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.floor-row .col-card {
    flex: 1 1 calc(16.66% - 15px); /* 6 per row desktop */
    max-width: calc(16.66% - 15px);
}

@media (max-width: 768px) {
    .floor-row .col-card {
        flex: 1 1 calc(50% - 15px); /* 2 per row mobile */
        max-width: calc(50% - 15px);
    }
}


/*booking form end*/

