@charset "utf-8";
/* Custom properties for easy color changes */

.form-container {
    width: 100%;
    max-width: 600px; /* Adjust as needed */
    padding: 0;
}

.form-group {
    margin-bottom: 30px;
}

/* --- Labels and Text --- */

label {
    display: block;
    color: var(--text-color1);
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: bold;
}

label strong {
    font-weight: normal; /* Make the (required) less bold */
}

/* --- Input Styling (Text, Email, Textarea) --- */

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0; /* Remove default padding for bottom-line effect */
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-color);
    color: var(--text-color);
    font-size: 1em;
    font-family: var(--font-family);
    outline: none; /* Remove focus outline */
    box-sizing: border-box;
    margin-top: 5px; /* Space between label/placeholder text and input line */
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-bottom: 2px solid var(--line-color);
}

/* Adjustments for the Name group */
.name-inputs {
    display: flex;
    gap: 30px;
}

.name-group .input-col {
    flex-grow: 1;
    position: relative;
    margin-top: 10px; /* Space below the main "Name (required)" label */
}

.name-group input {
    margin-top: 0;
}

.input-label {
    display: block;
    color: var(--text-color);
    font-size: 0.9em;
    opacity: 0.7; /* Lighter "First Name" and "Last Name" text */
    margin-top: 2px;
}

/* --- Dropdown Styling --- */

.dropdown-group {
    position: relative;
}

#interest {
    -webkit-appearance: none; /* Remove default styling on webkit browsers */
    -moz-appearance: none;    /* Remove default styling on Firefox */
    appearance: none;         /* Remove default styling */
    cursor: pointer;
    margin-top: 10px; /* Space below "I'm Interested In" label */
}

#interest:focus {
    outline: none;
    border-bottom: 2px solid var(--line-color);
}

.dropdown-arrow {
    position: absolute;
    top: 58px; /* Position it correctly relative to the top of the form group */
    right: 5px;
    color: var(--text-color);
    font-size: 1.2em;
    pointer-events: none; /* Ensures the click goes through to the select element */
}

/* --- Budget Options (Radio Buttons) --- */

.budget-group label {
    margin-bottom: 15px;
    font-weight: normal; /* Reset the bold for the main budget label */
}

.budget-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.budget-options input[type="radio"] {
    display: none; /* Hide the actual radio button */
}

.budget-options label {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9em;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
    font-weight: normal; /* Resetting bold from the general label rule */
    margin: 0; /* Reset margin from general label rule */
}

/* Styling for the selected radio button */
.budget-options input[type="radio"]:checked + label {
    background-color: var(--button-bg-color);
    color: var(--primary-color); /* Dark text on light background */
    border-color: var(--button-bg-color);
}

/* Hover effect */
.budget-options label:hover {
    opacity: 0.8;
}

/* --- Message (Textarea) --- */

textarea {
    resize: vertical; /* Allow resizing vertically */
    min-height: 80px;
}

/* --- Submit Button --- */

.submit-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 1.1em;
    padding: 0;
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
    position: relative;
    /* Optional: Simple hover effect */
    opacity: 0.8;
}

.submit-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Line under the submit button like in the image */
.submit-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--line-color);
}/* Custom properties for easy color changes */


.form-container {
    width: 100%;
    max-width: 600px; /* Adjust as needed */
    padding: 0;
}

.form-group {
    margin-bottom: 30px;
}

/* --- Labels and Text --- */

label {
    display: block;
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: bold;
}

label strong {
    font-weight: normal; /* Make the (required) less bold */
}

/* --- Input Styling (Text, Email, Textarea) --- */

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0; /* Remove default padding for bottom-line effect */
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-color);
    color: var(--text-color);
    font-size: 1em;
    font-family: var(--font-family);
    outline: none; /* Remove focus outline */
    box-sizing: border-box;
    margin-top: 5px; /* Space between label/placeholder text and input line */
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-bottom: 2px solid var(--line-color);
}

/* Adjustments for the Name group */
.name-inputs {
    display: flex;
    gap: 30px;
}

.name-group .input-col {
    flex-grow: 1;
    position: relative;
    margin-top: 10px; /* Space below the main "Name (required)" label */
}

.name-group input {
    margin-top: 0;
}

.input-label {
    display: block;
    color: var(--text-color);
    font-size: 0.9em;
    opacity: 0.7; /* Lighter "First Name" and "Last Name" text */
    margin-top: 2px;
}

/* --- Dropdown Styling --- */

.dropdown-group {
    position: relative;
}

#interest {
    -webkit-appearance: none; /* Remove default styling on webkit browsers */
    -moz-appearance: none;    /* Remove default styling on Firefox */
    appearance: none;         /* Remove default styling */
    cursor: pointer;
    margin-top: 10px; /* Space below "I'm Interested In" label */
}

#interest:focus {
    outline: none;
    border-bottom: 2px solid var(--line-color);
}

.dropdown-arrow {
    position: absolute;
    top: 58px; /* Position it correctly relative to the top of the form group */
    right: 5px;
    color: var(--text-color);
    font-size: 1.2em;
    pointer-events: none; /* Ensures the click goes through to the select element */
}

/* --- Budget Options (Radio Buttons) --- */

.budget-group label {
    margin-bottom: 15px;
    font-weight: normal; /* Reset the bold for the main budget label */
}

.budget-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.budget-options input[type="radio"] {
    display: none; /* Hide the actual radio button */
}

.budget-options label {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9em;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
    font-weight: normal; /* Resetting bold from the general label rule */
    margin: 0; /* Reset margin from general label rule */
}

/* Styling for the selected radio button */
.budget-options input[type="radio"]:checked + label {
    background-color: var(--button-bg-color);
    color: var(--primary-color); /* Dark text on light background */
    border-color: var(--button-bg-color);
}

/* Hover effect */
.budget-options label:hover {
    opacity: 0.8;
}

/* --- Message (Textarea) --- */

textarea {
    resize: vertical; /* Allow resizing vertically */
    min-height: 80px;
}

/* --- Submit Button --- */

.submit-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 1.1em;
    padding: 0;
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
    position: relative;
    /* Optional: Simple hover effect */
    opacity: 0.8;
}

.submit-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Line under the submit button like in the image */
.submit-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--line-color);
}/* Custom properties for easy color changes */


.form-container {
    width: 100%;
    max-width: 600px; /* Adjust as needed */
    padding: 0;
}

.form-group {
    margin-bottom: 30px;
}

/* --- Labels and Text --- */

label {
    display: block;
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: bold;
}

label strong {
    font-weight: normal; /* Make the (required) less bold */
}

/* --- Input Styling (Text, Email, Textarea) --- */

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0; /* Remove default padding for bottom-line effect */
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-color);
    color: var(--text-color);
    font-size: 1em;
    font-family: var(--font-family);
    outline: none; /* Remove focus outline */
    box-sizing: border-box;
    margin-top: 5px; /* Space between label/placeholder text and input line */
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-bottom: 2px solid var(--line-color);
}

/* Adjustments for the Name group */
.name-inputs {
    display: flex;
    gap: 30px;
}

.name-group .input-col {
    flex-grow: 1;
    position: relative;
    margin-top: 10px; /* Space below the main "Name (required)" label */
}

.name-group input {
    margin-top: 0;
}

.input-label {
    display: block;
    color: var(--text-color);
    font-size: 0.9em;
    opacity: 0.7; /* Lighter "First Name" and "Last Name" text */
    margin-top: 2px;
}

/* --- Dropdown Styling --- */

.dropdown-group {
    position: relative;
}

#interest {
    -webkit-appearance: none; /* Remove default styling on webkit browsers */
    -moz-appearance: none;    /* Remove default styling on Firefox */
    appearance: none;         /* Remove default styling */
    cursor: pointer;
    margin-top: 10px; /* Space below "I'm Interested In" label */
}

#interest:focus {
    outline: none;
    border-bottom: 2px solid var(--line-color);
}

.dropdown-arrow {
    position: absolute;
    top: 58px; /* Position it correctly relative to the top of the form group */
    right: 5px;
    color: var(--text-color);
    font-size: 1.2em;
    pointer-events: none; /* Ensures the click goes through to the select element */
}

/* --- Budget Options (Radio Buttons) --- */

.budget-group label {
    margin-bottom: 15px;
    font-weight: normal; /* Reset the bold for the main budget label */
}

.budget-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.budget-options input[type="radio"] {
    display: none; /* Hide the actual radio button */
}

.budget-options label {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9em;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
    font-weight: normal; /* Resetting bold from the general label rule */
    margin: 0; /* Reset margin from general label rule */
}

/* Styling for the selected radio button */
.budget-options input[type="radio"]:checked + label {
    background-color: var(--button-bg-color);
    color: var(--primary-color); /* Dark text on light background */
    border-color: var(--button-bg-color);
}

/* Hover effect */
.budget-options label:hover {
    opacity: 0.8;
}

/* --- Message (Textarea) --- */

textarea {
    resize: vertical; /* Allow resizing vertically */
    min-height: 80px;
}

/* --- Submit Button --- */

.submit-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 1.1em;
    padding: 0;
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
    position: relative;
    /* Optional: Simple hover effect */
    opacity: 0.8;
}

.submit-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Line under the submit button like in the image */
.submit-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--line-color);
}/* Custom properties for easy color changes */

.form-container {
    width: 100%;
    max-width: 600px; /* Adjust as needed */
    padding: 0;
}

.form-group {
    margin-bottom: 30px;
}

/* --- Labels and Text --- */

label {
    display: block;
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: bold;
}

label strong {
    font-weight: normal; /* Make the (required) less bold */
}

/* --- Input Styling (Text, Email, Textarea) --- */

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0; /* Remove default padding for bottom-line effect */
    background:#fff; /* changed from transparent to White */
    border: none;
    border-bottom: 1px solid var(--line-color);
    color: var(--text-color1); /* changed from --text-color */
    font-size: 1em;
    font-family: var(--font-family);
    outline: none; /* Remove focus outline */
    box-sizing: border-box;
    margin-top: 5px; /* Space between label/placeholder text and input line */
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-bottom: 2px solid var(--line-color);
}

/* Adjustments for the Name group */
.name-inputs {
    display: flex;
    gap: 30px;
}

.name-group .input-col {
    flex-grow: 1;
    position: relative;
    margin-top: 10px; /* Space below the main "Name (required)" label */
}

.name-group input {
    margin-top: 0;
}

.input-label {
    display: block;
    color: var(--text-color);
    font-size: 0.9em;
    opacity: 0.7; /* Lighter "First Name" and "Last Name" text */
    margin-top: 2px;
}

/* --- Dropdown Styling --- */

.dropdown-group {
    position: relative;
}

#interest {
    -webkit-appearance: none; /* Remove default styling on webkit browsers */
    -moz-appearance: none;    /* Remove default styling on Firefox */
    appearance: none;         /* Remove default styling */
    cursor: pointer;
    margin-top: 10px; /* Space below "I'm Interested In" label */
}

#interest:focus {
    outline: none;
    border-bottom: 2px solid var(--line-color);
}

.dropdown-arrow {
    position: absolute;
    top: 58px; /* Position it correctly relative to the top of the form group */
    right: 5px;
    color: var(--text-color);
    font-size: 1.2em;
    pointer-events: none; /* Ensures the click goes through to the select element */
}

/* --- Budget Options (Radio Buttons) --- */

.budget-group label {
    margin-bottom: 15px;
    font-weight: normal; /* Reset the bold for the main budget label */
}

.budget-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.budget-options input[type="radio"] {
    display: none; /* Hide the actual radio button */
}

.budget-options label {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9em;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
    font-weight: normal; /* Resetting bold from the general label rule */
    margin: 0; /* Reset margin from general label rule */
}

/* Styling for the selected radio button */
.budget-options input[type="radio"]:checked + label {
    background-color: var(--button-bg-color);
    color: var(--text-color1); /* Dark text on light background , change from --primary color*/
    border-color: var(--button-bg-color);
}

/* Hover effect */
.budget-options label:hover {
    opacity: 0.8;
}

/* --- Message (Textarea) --- */

textarea {
    resize: vertical; /* Allow resizing vertically */
    min-height: 80px;
}

/* --- Submit Button --- */

.submit-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 1.1em;
    padding: 0;
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
    position: relative;
    /* Optional: Simple hover effect */
    opacity: 0.8;
}

.submit-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Line under the submit button like in the image */
.submit-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--line-color);
}/* CSS Document */

