:root {
    --bs-white: #ffffff;
    /* --bs-primary: #124463; */
    --bs-primary: #000;
}
/*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: #000000;
    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: #45b8ff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #45b8ff;
    /* background: linear-gradient(180deg, #45B8FF 0%, var(--disposal-green) 100%); */
}
.hero-split__btn:hover {
    color: #fff;
    /* background: #124463; */
    background: linear-gradient(180deg, #20c997 0%, #38d39f 100%);
}

/* ================= 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); */
    color: #000;
}

.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;
    margin-top: 30px;
}
@media screen and (max-width: 700px) {
    fieldset {
        margin-bottom: 10px;
    }
}
legend {
    font-size: 18px;
    /* color: #124463; */
    /* font-weight: bold; */
    margin-bottom: 15px;
    /* border-bottom: 1.5px solid #124463; */
    /* padding-bottom: 5px; */
}
.form-group {
    margin-bottom: 15px;
}
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 !important; */
    border: none;
    border-radius: 5px;
    /* margin-bottom: 15px; */
    font-size: 15px;
    background-color: #c9eef5;
}

.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: center;
    align-items: center;
    flex-direction: column;
}
.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 */
    margin-top: 20px;
    margin-bottom: 20px;
}

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

.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: 4px;
    cursor: pointer;
    background: #fff;
    font-weight: 500;
    font-size: 12px;
    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: #45b8ff;
    color: #fff;
    border-radius: 8px;
    padding: 5px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

@media (max-width: 768px) {
    .floor-row .col-card {
        max-width: calc(20% - 0px);
    }

    .floor-row {
        gap: 3px;
    }
    .floor-label {
        font-size: 10px;
    }
    .floor-card {
        padding: 3px;
    }
}

/*residential and regular cleaning start*/
.cleaning-type-card {
    display: block;
    border: 2px solid #ccc;
    border-radius: 10px;
    text-align: center;
    padding: 4px;
    cursor: pointer;
    background: #fff;
    font-weight: 400;
    font-size: 12px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

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

/* Default label style inside card */
.cleaning-type-label {
    display: block;
    width: 100%;

    transition: all 0.3s ease-in-out;
}

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

/* Hover effect */
.cleaning-type-card:hover {
    border-color: var(--disposal-green);
    transform: translateY(-2px);
}

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

.cleaning-type-row .col-card {
    flex: 1 1 calc(20% - 15px); /* 5 per row on desktop */
    max-width: calc(20% - 15px);
}

@media (max-width: 768px) {
    .cleaning-type-row .col-card {
        max-width: calc(20% - 0px);
    }
    .cleaning-type-label {
        font-size: 10px;
    }
    .cleaning-type-card {
        padding: 3px;
    }
    /* .cleaning-type-card input[type="radio"]:checked ~ .cleaning-type-label {
		padding: 7px;
	} */
    .cleaning-type-row {
        gap: 3px;
    }

    .deep_services_label {
        font-size: 15px;
    }
}

/*residential and regular cleaning end*/
.deep-services-card {
    border: 1px dashed var(--disposal-green);
    padding: 4px 6px;
}

.deep-services-col {
    padding-right: 4px;
    padding-left: 4px;
}

.kitchen_customize_cleaning,
.customize_bathroom_cleaning {
    background: #c9eef5 !important;
    font-size: 14px !important;
    max-height: 80px !important;
}

/*booking form end*/

#home-form {
    width: 50%;
    margin: 0 auto;
}
@media (max-width: 1200px) {
    #home-form {
        width: 55%;
    }
    .step-progress {
        width: 75% !important;
    }
}
/* .step-progress {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 60px auto;
	position: relative;
	width: 58%;
}

.step-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #d9d9d9;
	color: #fff;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 60px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	z-index: 2;
}

.step-active {
	background-color: #45b8ff;
	box-shadow: 0 0 10px rgba(26, 167, 255, 0.5);
}

.step-line {
	flex: 1;
	height: 3px;
	background-color: #d9d9d9;
	position: relative;
	top: 0;
	z-index: 1;
	margin: 0 0px;
}

.step-active + .step-line {
	background-color: #45b8ff;
}


.step-circle:hover {
	transform: scale(1.05);
} */

.step-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    margin: 60px auto;
    position: relative;
}

/* circles */
.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d9d9d9;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}
.step-circle.active {
    background: var(--disposal-green);
}

/* connector lines */
.step-line {
    position: relative;
    flex: 1;
    height: 3px;
    background: #d9d9d9;
    overflow: hidden;
}
.step-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--disposal-green);
    width: 0%;
    transition: width 0.4s ease;
}

/* optional hover */
.step-circle:hover {
    transform: scale(1.05);
}

.form-step {
    opacity: 0;
    transform: translateX(40px);
    pointer-events: none;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.form-step-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
    animation: fadeSlideIn 0.5s ease forwards;
}

/* Smooth fade-slide keyframes */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Optional: slide out animation for smoother next-step feeling */
@keyframes fadeSlideOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-40px);
    }
}

/* Use this wrapper to apply flex layout safely */
/* .form-step-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 80vh;
	position: relative;
} */
.form-step-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.phone-group {
    align-items: normal !important;
}

.select2-container--default .select2-selection--single {
    background-color: #c9eef5 !important;
}

.newphonegroup {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.select2-container--default .select2-selection--single {
    border: none !important;
}
.select2-search__field {
    background-color: #c9eef5 !important;
    border-radius: 5px !important;
    border: none !important;
}

.select2-search__field::placeholder {
    font-size: 14px; /* Change this as you like */
    color: #45b8ff !important;
    font-weight: 500; /* Optional: make it slightly bolder */
}
.select2-results__option--highlighted {
    background-color: #45b8ff !important;
}
.select2-dropdown {
    border: 2px dashed #45b8ff !important;
}

.form-next-btn {
    display: inline-block;
    /* background: linear-gradient(90deg, #45b8ff, var(--disposal-green)); */
    background: linear-gradient(180deg, #45b8ff 0%, var(--disposal-green) 100%);

    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 6px;
    transition: opacity 0.3s ease;
    border: none;
    width: 100%;
}

/* .zuri-beforeafter-btn:hover {
  opacity: 0.9;
} */

.form-next-btn:hover {
    background: none !important; /* clears gradient */
    background-color: #ffffff !important; /* solid white background */
    color: var(--disposal-green) !important;
    border: 1px solid var(--disposal-green) !important;
    /* transform: translateY(-2px); */
    box-shadow: 0 4px 10px rgba(26, 167, 255, 0.2);
}

.back-btn {
    background: none;
    border: none;
    color: #000;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: var(--disposal-green);
    text-decoration: underline;
}

@media (max-width: 992px) {
    #home-form {
        width: 85%;
    }
    .newphonegroup {
        display: block;
    }
    .step-progress {
        width: 90% !important;
    }
    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 25px;
        line-height: 50px;
    }
    .heading-in-form {
        margin-top: 5px !important;
        width: 100%;
        text-align: center;
    }
}
.form-header {
    margin-bottom: 30px;
}
.form-check-input:checked {
    background-color: #45b8ff !important;
    border-color: #45b8ff !important;
}

/*info tooltip for end of tenancy page start*/
.info-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #45b8ff;
    font-size: 18px;
    transition: color 0.3s ease;
    line-height: 1; /* remove extra vertical space */
    vertical-align: middle; /* align perfectly with label text */
    margin-top: -2px; /* optional fine-tune (adjust if needed) */
}

.info-icon-wrapper:hover {
    color: var(--disposal-green);
}

/* Tooltip styles */
.info-tooltip {
    position: absolute;
    top: 120%; /* position below icon */
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    background: #ffffff;
    color: #333;
    font-size: 13px;
    line-height: 1.4;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #d6ecff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 10;
}

/* Tooltip arrow */
.info-tooltip::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.05));
}

/* Hover or focus show tooltip */
.info-icon-wrapper:hover .info-tooltip,
.info-icon-wrapper:focus .info-tooltip {
    opacity: 1;
    top: 135%;
}
@media (max-width: 767px) {
    .info-tooltip {
        right: 0%;
        transform: translateX(-100%);
    }
}
/*info tooltip for end of tenancy page end*/

/*balcony field start*/

/* Hidden by default */
.balconySizeContainer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    pointer-events: none;
}

/* Show animation */
.balconySizeContainer.show {
    max-height: 120px; /* adjust height if more content */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Optional: subtle appearance of input */
.balconySizeContainer.show input {
    animation: fieldGlow 0.5s ease;
}

@keyframes fieldGlow {
    from {
        box-shadow: 0 0 0px rgba(69, 184, 255, 0);
    }
    50% {
        box-shadow: 0 0 10px rgba(69, 184, 255, 0.3);
    }
    to {
        box-shadow: 0 0 0px rgba(69, 184, 255, 0);
    }
}

/*balcony field end*/

/*additional services cards start*/

/* Grid layout */
/* .extras-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 15px;
	margin-top: 20px;
} */

/* Service card styling */
/* ✅ Final Responsive & Contained Extra Services Grid */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🖥️ 4 cards per row on desktop */
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 🧩 Service Card */
.service-card {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px;
    word-wrap: break-word;
}

.service-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    width: 100%;
}

/* Tick icon */
.tick-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--disposal-green);
    color: #fff;
    font-size: 14px;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
}

/* Hover + Selected */
.service-card:hover {
    border-color: var(--disposal-green);
    background: #eef8ff;
}
.service-card.selected {
    border-color: var(--disposal-green);
    background: #e6f4ff;
}
.service-card.selected .tick-icon {
    opacity: 1;
    transform: scale(1);
}

/* 💻 Tablet (4 per row) */
@media (max-width: 1199px) {
    .extras-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 📱 Mobile (3 per row) */
@media (max-width: 767px) {
    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        min-height: 80px;
        padding: 8px;
    }

    .service-card p {
        font-size: 13px;
    }
}

/* 📱 Small Mobile */
@media (max-width: 480px) {
    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-card {
        min-height: 70px;
        padding: 6px;
    }

    .service-card p {
        font-size: 12px;
    }

    .tick-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
        top: 5px;
        right: 5px;
    }
}

/*additional services cards end*/

.form-step {
    display: none;
}
.form-step.form-step-active {
    display: block;
}

/* ===================== Flatpickr Custom Theme start ===================== */

/* ===================== Input with Icon ===================== */
.date-input-container {
    position: relative;
}

.date-input-container input {
    width: 100%;
    padding-right: 40px; /* space for icon */
    background-color: #c9eef5 !important;
    border: none !important;
    border-radius: 5px;
    font-size: 15px;
    height: 45px;
}

.date-input-container input::placeholder {
    color: #ccc;
    font-weight: 500;
}

.calendar-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #45b8ff;
    pointer-events: none;
}

.flatpickr-custom-theme {
    border-radius: 10px !important;
    border: 1px solid var(--disposal-green) !important;
    box-shadow: 0 6px 20px rgba(26, 167, 255, 0.25) !important;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

/* Calendar header (month/year area) */
.flatpickr-custom-theme .flatpickr-months {
    background: linear-gradient(
        180deg,
        #45b8ff 0%,
        var(--disposal-green) 100%
    ) !important;
    color: #fff !important;
    border-bottom: none !important;
}

.flatpickr-custom-theme .flatpickr-months .flatpickr-prev-month,
.flatpickr-custom-theme .flatpickr-months .flatpickr-next-month {
    color: #fff !important;
    opacity: 0.8 !important;
}
.flatpickr-custom-theme .flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-custom-theme .flatpickr-months .flatpickr-next-month:hover {
    opacity: 1 !important;
}

/* Weekdays (Mon, Tue...) */
.flatpickr-custom-theme .flatpickr-weekdays {
    background: #e6f4ff !important;
    color: #124463 !important;
    font-weight: 600 !important;
}

/* Days grid */
.flatpickr-custom-theme .flatpickr-day {
    color: #000 !important;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.flatpickr-custom-theme .flatpickr-day:hover {
    background: #c9eef5 !important;
    border-color: var(--disposal-green) !important;
}

/* Selected date */
.flatpickr-custom-theme .flatpickr-day.selected,
.flatpickr-custom-theme .flatpickr-day.startRange,
.flatpickr-custom-theme .flatpickr-day.endRange {
    background: linear-gradient(
        180deg,
        #45b8ff 0%,
        var(--disposal-green) 100%
    ) !important;
    color: #fff !important;
    border: none !important;
}

/* Today’s date highlight */
.flatpickr-custom-theme .flatpickr-day.today {
    border: 1px solid #45b8ff !important;
    color: var(--disposal-green) !important;
}

/* Disabled dates */
.flatpickr-custom-theme .flatpickr-day.disabled {
    color: #bbb !important;
    cursor: not-allowed;
}

/* ===================== Crossed-out Disabled Dates ===================== */
.flatpickr-custom-theme .flatpickr-day.flatpickr-disabled.crossed-day {
    position: relative;
    color: #bbb !important;
    background: #f8f8f8 !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
}

.flatpickr-custom-theme .flatpickr-day.selected,
.flatpickr-custom-theme .flatpickr-day.flatpickr-selected {
    background: linear-gradient(
        180deg,
        #45b8ff 0%,
        var(--disposal-green) 100%
    ) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 0 6px rgba(26, 167, 255, 0.3);
}

/* ===================== Flatpickr Custom Theme end ===================== */

.message-box {
    padding: 10px;
    /* border: 1px solid #ddd !important; */
    border: none !important;
    border-radius: 5px;
    /* margin-bottom: 15px; */
    font-size: 15px;
    background-color: #c9eef5;
}

/* ✅ Fade-in animation for new carpet rows */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.carpet-size-row,
.mattress-size-row,
.sofa-size-row {
    opacity: 0; /* start invisible */
    animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeDown {
    animation: fadeDown 0.4s ease forwards;
}

.services-hero-btn {
    width: 50%;
    height: 56px;
    border: 2px solid #ffeb38;
    border-radius: 10px;
    font-size: 25px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    background: linear-gradient(180deg, #ffeb38, #ffc738);
    transition: all 0.3s ease;
}

.services-hero-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .services-hero-btn {
        height: 54px;
        border-radius: 8px;
        font-size: 16px;
        border-width: 1.5px;
    }
}
@media (max-width: 600px) {
    .services-hero-btn {
        height: 52px;
        font-size: 16px;
    }
}

#error-message {
    margin-top: 10px;
    text-align: center;
}

.errorfield {
    border: 2px dashed #dc3545 !important;
    background-color: #fff5f5 !important;
}
.heading-in-form {
    color: black;
    /* font-size: 32px; */
    font-size: clamp(1.25rem, 4.25vw, 2.6rem);
    font-weight: 600;
}
.form-header {
    color: black;
    /* font-size: 28px; */
    font-size: clamp(1rem, 4vw, 2.4rem);
    font-weight: 600;
}

.main_cont_sub tbody,
.main_cont_sub td,
.main_cont_sub tfoot,
.main_cont_sub th,
.main_cont_sub thead,
.main_cont_subtr {
    border: 2px dashed var(--disposal-green) !important;
    background-color: #c9eef5 !important;
}

.custombluebtn {
    height: 50px;
    font-family: "Inter", sans-serif;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    /* background: linear-gradient(90deg, #45b8ff, var(--disposal-green)); */

    background: linear-gradient(180deg, #20c997 0%, #38d39f 100%);

    border: none !important;
    box-shadow: 0px 0px 40px rgba(127, 137, 161, 0.25);
}

.custombluebtn:hover {
    background: none !important; /* clears gradient */
    background-color: #ffffff !important; /* solid white background */
    color: var(--disposal-green) !important;
    border: 2px solid #1a967f !important;
}
@media screen and (max-width: 768px) {
    .custombluebtn {
        font-size: 22px;
        height: 40px;
    }
}

/* /custom checkbox start/ */

.custom-check {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.custom-check input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Outer circle */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--disposal-green);
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Tick mark */
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid var(--disposal-green);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

/* When checked */
.custom-check input:checked ~ .checkmark {
    background-color: var(--disposal-green);
}

.custom-check input:checked ~ .checkmark::after {
    display: block;
    border-color: #fff;
}

/* Hover/Focus */
.custom-check:hover .checkmark {
    box-shadow: 0 0 5px rgba(26, 255, 160, 0.4);
}

.customyellowbtn {
    height: 60px;
    font-family: "Inter", sans-serif !important;
    width: 50%;
    font-size: 22px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    border-radius: 8px;

    background: linear-gradient(180deg, #ffeb38 0%, #ffc738 100%);

    border: none !important;
    box-shadow: 0px 0px 40px rgba(127, 137, 161, 0.25);
}

.customyellowbtn:hover {
    background: none !important; /* clears gradient */
    background-color: #ffffff !important; /* solid white background */
    color: black !important;
    border: 2px solid #ffeb38 !important;
}
@media screen and (max-width: 768px) {
    .customyellowbtn {
        font-size: 22px;
        height: 40px;
    }
}
/* /custom checkbox end/ */

.select2-container--default .select2-selection--single {
    height: 100% !important;
    display: flex;
    align-items: center;
}

.select2-selection__rendered {
    line-height: inherit !important;
}

.select2-selection__arrow {
    height: 100% !important;
}
.form-control:focus {
    border-color: #06693b !important;
}

.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #4ab9c8 !important;
}

.select2-dropdown {
    border: 2px dashed var(--disposal-green) !important;
}


@media screen and (max-width: 768px) {
    .select2-container--default .select2-selection--single {
        padding: 10px 10px !important;
        font-size: 14px;
    }
}
