#main-floorplan{
    margin-bottom: 100px;
}

/*Series filter*/
.filter-nav {
    background: #bbdebb;
  }

.filter-nav .row > *{
    padding-left: unset;
    padding-right: unset;
}
.nav-link-model{
    background: #bbdebb;
    font-weight: 600;
}

.filter-nav .nav-link-model {
    padding-bottom: 1rem;
    padding-top: 1rem;
    font-weight: 500 !important;
}

.filter-nav .nav-link-active {
    color: white;
    background-color: var(--green);
}

button.nav-link-model:not(.nav-link-active):hover{
    color: var(--green);
}

/*Card*/
.card-custom-top-container{
    aspect-ratio: 2 / 2 !important;
}

.checkmark.active{
    background-color: var(--green);
    opacity: 1; 
    svg{
        display: block;
    }
}
.checkmark{
    position: absolute; 
    top: 0px; 
    right: 0px; 
    background-color: gray;
    border-radius: 25%; 
    width: 30px; 
    height: 30px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 10; 
    opacity: 0.5;
    svg{
        display: none;
    }
}

.card-custom{
    transition: all 0.1s ease-in-out !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
    height: 100%;
    border: 2px solid rgba(128, 128, 128, 0.5);
     
    border-radius: 15px; 
    overflow: hidden; 
    cursor: pointer; 
    position: relative; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    transition: border 0.2s ease-in-out;
}

.card-custom:hover {
    transform: scale(1.03); /* Expands the card to 103% of its original size */
    box-shadow: 0 12px 24px rgba(0,0,0,0.3) !important; /* Increases shadow for a more pronounced pop-out */
}
button{
    border: none;
}
.model-info-text-area div.border-r{
    align-self: center;
    color: gray;
    img{
        width: 1.5rem;
        height: auto;
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
}

.quote-container {
    background-color: #f7f0e3; /* Light cream background */
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}
.step-number {
    background-color: #e0ac5d; /* Orange-brown for the number circle */
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.step-text {
    color: #e0ac5d; /* Orange-brown for "GET A QUOTE" */
    font-weight: 600;
    margin-left: 10px;
    font-size: 1.1rem;
}
.main-heading {
    color: #333; /* Dark text for heading */
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 40px;
}

/* Form specific styling */
.form_fields {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for inputs */
    gap: 20px 40px; /* Row gap, column gap */
    margin-bottom: 30px;
}

.form_field {
    position: relative;
    text-align: left; /* Align labels/placeholders to the left */
}

.form_field_textfield,
.form_field_textarea {
    width: 100%;
    padding: 10px 0; /* Adjust padding for the underline effect */
    border: none;
    border-bottom: 2px solid #e0ac5d; /* Orange-brown underline */
    background-color: transparent; /* Make background transparent */
    font-size: 1.1rem;
    color: #555;
    transition: border-color 0.3s ease;
    outline: none; /* Remove default outline */
    border-radius: 0; /* Ensure no rounded corners for the underline effect */
}

.form_field_textfield:focus,
.form_field_textarea:focus {
    border-color: #6dae5d; /* Green on focus */
}

.form_field_textfield::placeholder,
.form_field_textarea::placeholder {
    color: #888; /* Lighter placeholder text */
}

/* Hide the label for input fields that use placeholder */
.form_field_label[for^="field_field_"] {
    display: none;
}

/* Specific styling for the textarea to span two columns */
.form_field.question {
    grid-column: 1 / -1; /* Span across both columns */
    margin-top: 20px; /* Add some space above the textarea */
}

.form_field_label[for="field_field_1753432445123"] {
    display: block; /* Show label for the textarea */
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Hide the checkbox part */
.form_field.chosen-models {
    display: none;
}

/* Style for the submit button */
.form_submit_input {
    background-color: #6dae5d; /* Green button */
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1.2rem;
    width: 100%; /* Allow button to size based on content */
    margin-top: 30px; /* Space above the button */
}

.form_submit_input:hover {
    background-color: #5a964e; /* Darker green on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form_fields {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 20px;
    }
    .main-heading {
        font-size: 2rem;
    }
    .quote-container {
        padding: 25px;
    }
    .form_submit_input {
        width: 100%; /* Full width button on small screens */
        padding: 12px 20px;
    }
}