:root {
    --form-bg: #ffffff;
    --input-bg: #ffffff;
    --input-border: #e0e0e0;
    --input-focus: #d0d0d0;
    --label-color: #4a4a4a;
    --text-color: #333333;
    --placeholder-color: #999999;
    --button-bg: #3d5a80;
    --button-hover: #2c4460;
    --calendar-bg: #f5f5f0;
    --calendar-accent: #6b7d94;
    --selected-date: #000000;
    --selected-bg: #ffffff;
    --selected-border: #000000;
}

/* ========================================
   FORM SECTION GRADIENT BACKGROUND
   ======================================== */

.form-section-gradient {
    background: linear-gradient(180deg, #e8f4f8 0%, #fff4e6 100%);
    min-height: 100vh;
    padding: 60px 0;
    position: relative;
}

.form-section-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(232, 244, 248, 0.5) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 244, 230, 0.5) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 0;
}

.form-section-gradient .container {
    position: relative;
    z-index: 1;
}

/* ========================================
       SITE FORM WRAPPER - Main form container
       ======================================== */

.site_form {
    width: 100%;
    max-width: 800px;
    background: transparent;
    padding: 40px 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
}

.site_form.site_form_time_off_request {
    max-width: 1160px;
}

.site_form.site_form_time_off_request .flatpickr-calendar {
    max-width: 400px !important;
}

.site_form .form-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.site_form .form-left {
    flex: 1;
    background: var(--primary-bg);
}

.site_form .form-right {
    width: 400px;
    flex-shrink: 0;
}

/* Supply Order Form - Two Equal Columns */
.site_form .form-wrapper-supply-order {
    align-items: stretch;
}

.site_form .form-left-supply-order,
.site_form .form-right-supply-order {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site_form .form-left-supply-order .form-field,
.site_form .form-right-supply-order .form-field {
    margin-bottom: 21px;
}

/* ========================================
         FORM FIELD STYLES
         ======================================== */

/* Global Label Styles */
.site_form label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #636363;
    margin-bottom: 3px;
}

/* Global Input Styles */
.site_form .form-input,
.site_form .form-select,
.site_form .form-textarea {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    color: var(--text-color);
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 25px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.site_form .form-input:focus,
.site_form .form-select:focus,
.site_form .form-textarea:focus {
    border-color: var(--input-focus);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site_form .form-input::placeholder,
.site_form .form-textarea::placeholder {
    color: var(--placeholder-color);
    font-size: 14px;
}

/* Textarea Specific */
.site_form .form-textarea {
    min-height: 170px;
    border-radius: 20px;
    padding: 16px 20px 16px 50px;
    position: relative;
    resize: none;
}

/* Textarea Wrapper with Pencil Icon */
.site_form .textarea-wrapper {
    position: relative;
}

.site_form .textarea-wrapper::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'%3E%3C/path%3E%3Cpath d='M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

/* Select Dropdown with Arrow Icon */
.site_form .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding: 14px 70px 13px 15px;;
    cursor: pointer;
}

/* Date Input Wrapper with Calendar Icon */
.site_form .date-input-wrapper {
    position: relative;
}

.site_form .date-input-wrapper .form-input {
    padding-right: 45px;
    cursor: pointer;
}

/* Hide native date picker icon */
.site_form .date-input-wrapper .form-input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.site_form .date-input-wrapper .form-input[type="date"]::-webkit-inner-spin-button,
.site_form .date-input-wrapper .form-input[type="date"]::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
}

.site_form .date-input-wrapper::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

/* Disabled Input */
.site_form .form-input:disabled {
    background: #f8f8f8;
    color: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Form Grid */
.site_form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.site_form .form-field-full {
    grid-column: 1 / -1;
}

/* Full Width Form Field */
.site_form .form-field-full-width {
    width: 100%;
    margin-bottom: 20px;
}

/* Full Width Submit Button */
.site_form .submit-btn-full-width {
    width: 100%;
    max-width: 100%;
}

/* ========================================
   DATE SPLIT FIELDS (MM, DD, YY)
   ======================================== */

.site_form .date-split-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    min-height: 52px;
}

.site_form .date-split-input {
    flex: 1;
    text-align: center;
    padding: 14px 12px;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    border-radius: 25px;
    font-size: 15px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.site_form .date-split-input:focus {
    outline: none;
    border-color: var(--input-focus);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site_form .date-split-input::placeholder {
    color: var(--placeholder-color);
    font-size: 14px;
    opacity: 1;
}

.site_form .date-split-input:placeholder-shown {
    text-align: center;
}

.site_form .date-split-icon {
    position: relative;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 50%;
    flex-shrink: 0;
}

.site_form .date-split-icon:hover {
    border-color: var(--input-focus);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: scale(1.05);
}

.site_form .date-split-icon svg {
    width: 18px;
    height: 18px;
    stroke: #666;
}

.site_form .date-picker-hidden {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* ========================================
   TIME SPLIT FIELDS (HH, MM, AM/PM)
   ======================================== */

.site_form .time-split-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    min-height: 52px;
}

.site_form .time-split-input {
    flex: 1;
    text-align: center;
    padding: 14px 12px;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    border-radius: 25px;
    font-size: 15px;
    color: var(--text-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.site_form .time-split-input:focus {
    outline: none;
    border-color: var(--input-focus);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site_form .time-split-input[readonly] {
    cursor: pointer;
    background: var(--input-bg);
}

.site_form .time-split-input::placeholder {
    color: var(--placeholder-color);
    font-size: 14px;
}

.site_form .time-split-select {
    flex: 1;
    text-align: center;
    padding: 14px 12px;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    border-radius: 25px;
    font-size: 15px;
    color: var(--text-color);
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.site_form .time-split-select:focus {
    outline: none;
    border-color: var(--input-focus);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site_form .time-split-icon {
    position: relative;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 50%;
    flex-shrink: 0;
}

.site_form .time-split-icon:hover {
    border-color: var(--input-focus);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: scale(1.05);
}

.site_form .time-split-icon svg {
    width: 18px;
    height: 18px;
    stroke: #666;
}

/* Time Picker Wrapper Positioning */
.site_form .time-split-wrapper {
    position: relative;
}

/* Custom Time Picker Dropdown */
.site_form .custom-time-picker {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 9999;
    background: #ffffff;
    border: 1px solid var(--input-border);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 280px;
}

.site_form .time-picker-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site_form .time-picker-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.site_form .time-picker-select {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--input-border);
    border-radius: 25px;
    background: var(--input-bg);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
    transition: all 0.3s ease;
}

.site_form .time-picker-select:focus {
    outline: none;
    border-color: var(--input-focus);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site_form .time-picker-select:hover {
    border-color: var(--input-focus);
}

.site_form .time-separator {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    padding: 0 5px;
}

/* Flatpickr Calendar Positioning */
.site_form .date-split-wrapper {
    position: relative;
}

.site_form .flatpickr-calendar {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin-top: 8px !important;
    z-index: 9999 !important;
    background: #ffffff !important;
    border: 1px solid var(--input-border) !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    width: auto !important;
    min-width: 280px !important;
    max-width: 320px !important;
}

/* Time Picker Specific Styles */
.site_form .flatpickr-calendar.hasTime {
    min-width: 220px !important;
    max-width: 260px !important;
    padding: 15px !important;
}

.site_form .flatpickr-calendar.hasTime.noCalendar {
    padding: 15px !important;
}

.site_form .flatpickr-time {
    background: #ffffff;
    border: none;
    padding: 10px 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 20px;
}

.site_form .flatpickr-time .flatpickr-time-wrapper {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.site_form .flatpickr-time .numInputWrapper {
    position: relative;
    display: inline-block;
    width: 60px;
}

.site_form .flatpickr-time .numInputWrapper .numInput {
    border: 1px solid var(--input-border);
    border-radius: 25px;
    padding: 12px 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    background: var(--input-bg);
    color: var(--text-color);
    transition: all 0.3s ease;
    appearance: none;
    -moz-appearance: textfield;
}

.site_form
    .flatpickr-time
    .numInputWrapper
    .numInput::-webkit-outer-spin-button,
.site_form
    .flatpickr-time
    .numInputWrapper
    .numInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.site_form .flatpickr-time .numInputWrapper .numInput:focus {
    outline: none;
    border-color: var(--input-focus);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site_form .flatpickr-time .flatpickr-time-separator {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    padding: 0 8px;
    line-height: 1;
}

.site_form .flatpickr-time .flatpickr-am-pm {
    border: 1px solid var(--input-border);
    border-radius: 25px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    background: var(--input-bg);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 55px;
    text-align: center;
    display: inline-block;
}

.site_form .flatpickr-time .flatpickr-am-pm:hover {
    border-color: var(--input-focus);
    background: var(--input-focus);
    color: #ffffff;
}

.site_form .flatpickr-time .flatpickr-am-pm.flatpickr-am-pm-selected {
    background: var(--button-bg);
    color: #ffffff;
    border-color: var(--button-bg);
}

.site_form .flatpickr-time .arrowUp,
.site_form .flatpickr-time .arrowDown {
    position: absolute;
    right: 8px;
    width: 0;
    height: 0;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.site_form .flatpickr-time .arrowUp {
    top: 4px;
    border-bottom: 6px solid var(--text-color);
}

.site_form .flatpickr-time .arrowDown {
    bottom: 4px;
    border-top: 6px solid var(--text-color);
}

.site_form .flatpickr-time .arrowUp:hover,
.site_form .flatpickr-time .arrowDown:hover {
    opacity: 1;
}

.site_form .flatpickr-time .numInputWrapper:hover .arrowUp,
.site_form .flatpickr-time .numInputWrapper:hover .arrowDown {
    opacity: 0.8;
}

/* Ensure time picker displays all components */
.site_form .flatpickr-calendar.hasTime.noCalendar .flatpickr-time {
    border-top: none;
    padding: 10px 0;
}

/* Make sure hour, minute, and AM/PM are all visible */
.site_form .flatpickr-time .numInputWrapper {
    flex: 0 0 auto;
}

.site_form .flatpickr-time .flatpickr-time-separator {
    flex: 0 0 auto;
}

.site_form .flatpickr-time .flatpickr-am-pm {
    flex: 0 0 auto;
}

/* Highlight active input in time picker */
.site_form .flatpickr-time .numInputWrapper .numInput:focus {
    background: #f0f0f0;
    border-color: var(--input-focus);
}

.site_form .flatpickr-calendar.arrowTop::before {
    border-bottom-color: #fff;
}

.site_form .flatpickr-calendar.arrowTop::after {
    border-bottom-color: #fff;
}

/* ========================================
   FILE UPLOAD FIELD STYLES
   ======================================== */

.site_form .file-upload-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.site_form .form-file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.site_form .form-file-label {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
    color: var(--text-color);
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
}

.site_form .form-file-label:hover {
    border-color: var(--input-focus);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site_form .file-upload-text {
    color: var(--placeholder-color);
    font-size: 14px;
}

.site_form .file-upload-icon {
    width: 40px;
    height: 40px;
    background: #ed9b04;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: 10px;
    bottom: 13px;
}

.site_form .file-upload-icon:hover {
    background: #d6890a;
    transform: scale(1.05);
}

.site_form .file-upload-icon img {
    width: 15px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes the icon white */
}

.site_form .file-upload-icon i {
    color: #ffffff;
    font-size: 18px;
}

.site_form .file-upload-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}

/* Submit Button */
.site_form .submit-btn {
    width: 100%;
    max-width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: var(--button-bg);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.site_form .submit-btn:hover {
    background: var(--button-hover);
    box-shadow: 0 4px 12px rgba(61, 90, 128, 0.3);
    transform: translateY(-1px);
}

.site_form .submit-btn:active {
    transform: translateY(0);
}

/* ========================================
         CALENDAR WIDGET STYLES
         ======================================== */

.site_form .calendar-widget {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: sticky;
    top: 20px;
}

/* Calendar Widget for Time Off Form */
.site_form_time_off_request .calendar-widget {
    background: transparent;
    padding: 0;
}

/* Background color for the form section (light pastel green) */
.site_form_time_off_request {
    background: transparent;
}

/* Calendar Widget Calendar Container */
.site_form_time_off_request #calendarWidget {
    margin: 0;
}

.site_form_time_off_request .calendar-card #calendarWidget .flatpickr-calendar {
    position: relative !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    border: none !important;
    background: transparent !important;
    overflow: visible !important;
}

.site_form_time_off_request
    .calendar-card
    #calendarWidget
    .flatpickr-calendar.inline {
    display: block;
}

/* Calendar DateTime Display Input - Inside white card */
.site_form_time_off_request .calendar-card #calendarDateTimeDisplay {
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    padding-left: 45px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    height: 48px;
    width: 100%;
}

/* Calendar Icon in Input - Inside white card */
.site_form .calendar-card .calendar-datetime-input {
    position: relative;
    margin-bottom: 20px;
}

.site_form .calendar-card .calendar-datetime-input .calendar-icon-input {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    display: block;
}

.site_form .calendar-card .calendar-datetime-input .form-input {
    padding-left: 45px;
    background: #ffffff;
    cursor: pointer;
    width: 100%;
}

/* Make time display clickable */
.site_form_time_off_request #calendarTimeDisplay {
    cursor: pointer;
}

.site_form .calendar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    /* Header is outside the white card */
}

.site_form .calendar-header label {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
}

.site_form .calendar-header .info-icon {
    width: 18px;
    height: 18px;
    background: #d0d0d0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    cursor: help;
    font-weight: bold;
}

/* Calendar Card - White background with rounded corners and blue outline */
.site_form .calendar-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e7ff;
    margin-bottom: 0;
    position: relative;
    width: 100%;
}

/* Active/Focused state with blue outline */
.site_form .calendar-card:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Flatpickr Calendar Customization - White background */
.site_form .calendar-card .flatpickr-calendar {
    background: #ffffff !important;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    overflow: visible !important;
}

.site_form .flatpickr-calendar {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid var(--input-border) !important;
    border-radius: 20px !important;
    width: auto !important;
    min-width: 280px !important;
    max-width: 320px !important;
    padding: 15px !important;
}

.site_form .flatpickr-months {
    background: #ffffff;
    margin-bottom: 15px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Calendar Card specific styles - Keep months visible */
.site_form .calendar-card .flatpickr-months {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.site_form .calendar-card .flatpickr-innerContainer {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.site_form .flatpickr-month {
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.site_form .flatpickr-current-month {
    font-size: 18px;
    color: var(--text-color);
    padding: 0;
    font-weight: 600;
    text-transform: capitalize;
}

.site_form .flatpickr-prev-month,
.site_form .flatpickr-next-month {
    fill: var(--text-color);
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.2s;
}

.site_form .flatpickr-prev-month:hover,
.site_form .flatpickr-next-month:hover {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.site_form .flatpickr-weekdays {
    background: #ffffff;
    margin-bottom: 5px;
    padding: 5px 0;
}

.site_form .flatpickr-weekday {
    color: var(--calendar-accent);
    font-weight: 600;
    font-size: 13px;
}

.site_form .flatpickr-days {
    width: 100% !important;
    background: #ffffff;
    overflow: visible !important;
}

.site_form .dayContainer {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    background: #ffffff;
    overflow: visible !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

/* Ensure 7 days are visible in calendar */
.site_form .flatpickr-days {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.site_form .dayContainer .flatpickr-day {
    flex: 0 0 calc(14.2857% - 4px) !important; /* 100% / 7 days */
    max-width: calc(14.2857% - 4px) !important;
}

/* Calendar Card specific styles - White background */
.site_form .calendar-card .flatpickr-weekdays {
    background: #ffffff;
}

.site_form .calendar-card .flatpickr-days {
    background: #ffffff;
}

.site_form .calendar-card .dayContainer {
    background: #ffffff;
}

.site_form .flatpickr-day {
    color: var(--text-color);
    border-radius: 50%;
    font-weight: 500;
    border: 2px solid transparent;
    max-width: none;
    height: 40px;
    width: 40px;
    line-height: 36px;
    background: transparent;
    margin: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: default !important;
}

/* Prevent date selection on calendar widget */
.site_form_time_off_request .calendar-card .flatpickr-day.selected {
    background: transparent !important;
    border-color: transparent !important;
    color: var(--text-color) !important;
}

.site_form .flatpickr-day.prevMonthDay,
.site_form .flatpickr-day.nextMonthDay {
    color: #ccc;
    opacity: 0.5;
}

.site_form .flatpickr-day:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.site_form .flatpickr-day.selected {
    background: transparent;
    color: var(--text-color);
    border: 2px solid #a78bfa;
    border-radius: 6px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.site_form .flatpickr-day.today {
    border-color: #bbb;
    background: transparent;
}

.site_form .flatpickr-day.today.selected {
    background: transparent;
    border-color: #a78bfa;
    border-radius: 6px;
}

/* Time Off Request Badges on Calendar */
.site_form .flatpickr-day {
    position: relative;
    min-height: 36px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.site_form .flatpickr-day .time-off-badge {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
    z-index: 10;
}

.site_form .flatpickr-day .time-off-badge.status-pending {
    background-color: #ffc107;
}

.site_form .flatpickr-day .time-off-badge.status-approved {
    background-color: #28a745;
}

.site_form .flatpickr-day .time-off-badge.status-rejected {
    background-color: #dc3545;
}

/* Time Off Request - Dark blue background with white text */
.site_form .flatpickr-day.has-time-off {
    background: #0a2239 !important;
    color: #ffffff !important;
    border-radius: 6px;
}

.site_form .flatpickr-day.has-time-off:hover {
    background: #0a2239 !important;
    color: #ffffff !important;
}

.site_form .flatpickr-day.has-time-off.selected {
    background: #0a2239 !important;
    color: #ffffff !important;
    border-color: #0a2239 !important;
}

/* Time Off Request Tooltip - CSS-only approach using ::before */
/* Prevent clicking on days with time off */
.site_form .flatpickr-day.has-time-off {
    cursor: default !important;
    pointer-events: auto;
    position: relative;
}

.site_form .flatpickr-day.has-time-off * {
    pointer-events: none;
}

/* Global tooltip appended to body - avoids clipping issues */
#time-off-global-tooltip {
    position: fixed;
    display: none;
    background: #ffffff;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    white-space: normal;
    z-index: 9999999;
    font-size: 12px;
    line-height: 1.4;
    min-width: 120px;
    max-width: 200px;
    text-align: center;
    pointer-events: none;
    word-wrap: break-word;
}

#time-off-global-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff;
}

.site_form .flatpickr-day .time-off-name-item {
    font-size: 12px;
    color: #333;
    padding: 4px 0;
    border-bottom: 1px solid #f0f0f0;
    white-space: normal;
}

.site_form .flatpickr-day .time-off-name-item:last-child {
    border-bottom: none;
}

/* Date/Time Display Below Calendar - Inside white card */
.site_form .calendar-card .calendar-footer {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.site_form .calendar-footer-item {
    flex: 1;
}

.site_form .calendar-card .calendar-footer-item label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--text-color);
}

.site_form .calendar-card .calendar-footer-item .calendar-footer-input {
    background: #ffffff;
    padding: 12px 18px;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: 100%;
}

.site_form .calendar-card .calendar-footer-item .calendar-footer-input:focus {
    outline: none;
    border-color: #3b82f6;
}

/* ========================================
         RESPONSIVE DESIGN
         ======================================== */

@media (max-width: 1024px) {
    .site_form {
        max-width: 90%;
    }

    .site_form .form-wrapper {
        flex-direction: column;
    }

    .site_form .form-right {
        width: 100%;
    }

    .form-section-gradient {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    /* Supply Order Form - Stack Columns on Mobile */
    .site_form .form-wrapper-supply-order {
        flex-direction: column;
    }

    .site_form .form-left-supply-order,
    .site_form .form-right-supply-order {
        width: 100%;
    }
    .site_form {
        max-width: 95%;
        padding: 20px 0;
    }

    .site_form .form-grid {
        grid-template-columns: 1fr;
    }

    .form-section-gradient {
        padding: 30px 0;
        min-height: auto;
    }

    body {
        padding: 15px;
    }

    .site_form .calendar-widget {
        padding: 20px;
    }

    .site_form .date-split-wrapper {
        gap: 6px;
    }

    .site_form .date-split-input {
        max-width: 70px;
        padding: 12px 8px;
        font-size: 14px;
    }

    .site_form .date-split-icon {
        width: 36px;
        height: 36px;
    }

    .site_form .date-split-icon svg {
        width: 16px;
        height: 16px;
    }

    .site_form .time-split-input,
    .site_form .time-split-select {
        max-width: 70px;
        padding: 12px 8px;
        font-size: 14px;
    }

    .site_form .time-split-icon {
        width: 36px;
        height: 36px;
    }

    .site_form .time-split-icon svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .site_form {
        max-width: 100%;
        padding: 15px 0;
    }

    .site_form .form-input,
    .site_form .form-select {
        padding: 12px 18px;
        font-size: 14px;
    }

    .site_form .submit-btn {
        font-size: 15px;
        padding: 14px 28px;
    }

    .site_form .date-split-wrapper {
        gap: 4px;
        flex-wrap: wrap;
    }

    .site_form .form-left {
        width: 100%;
        display: block;
    }

    .site_form .date-split-input {
        max-width: 100px;
        padding: 10px 6px;
        font-size: 13px;
    }

    .site_form .date-split-icon {
        width: 32px;
        height: 32px;
    }

    .site_form .date-split-icon svg {
        width: 14px;
        height: 14px;
    }

    .site_form .time-split-input,
    .site_form .time-split-select {
        max-width: 100px;
        padding: 10px 6px;
        font-size: 13px;
    }

    .site_form .time-split-wrapper {
        gap: 5px;
    }

    .site_form .time-split-icon {
        width: 32px;
        height: 32px;
    }

    .site_form .time-split-icon svg {
        width: 14px;
        height: 14px;
    }

    .form-header-section {
        height: auto;
        margin-top: 70px;
    }

    .form-header-content h1 {
        font-size: 30px;
    }

    .form-header-content p {
        font-size: 17px;
        width: 100%;
    }
}

/* ========================================
   CHECKBOX GROUP COMPONENT
   ======================================== */

.checkbox-group-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--label-color);
    margin-bottom: 15px;
}

.checkbox-group-wrapper {
    display: grid;
    gap: 28px;
    width: 100%;
}

/* 4 Columns Layout */
.checkbox-group-wrapper[data-columns="4"] {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
}

/* 3 Columns Layout */
.checkbox-group-wrapper[data-columns="3"] {
    grid-template-columns: repeat(3, 1fr);
}

/* 2 Columns Layout */
.checkbox-group-wrapper[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

/* 1 Column Layout */
.checkbox-group-wrapper[data-columns="1"] {
    grid-template-columns: 1fr;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.checkbox-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    filter: drop-shadow(1px 1px 1px #ccc);
}

.checkbox-input:hover {
    background-color: #ed9b04;
    border-color: #ed9b04;
}

.checkbox-input:checked {
    background-color: #ed9b04;
    border-color: #ed9b04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23ffffff' d='M11.5 3.5L5 10L2.5 7.5L3.5 6.5L5 8L10.5 2.5L11.5 3.5Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
}

.checkbox-input:focus {
    outline: 2px solid #ed9b04;
    outline-offset: 2px;
}

.checkbox-label {
    font-size: 15px;
    color: #4a4a4a;
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
    margin: 0;
}

.checkbox-label:hover {
    color: #333333;
}

/* Responsive: 4 columns to 2 columns on tablet */
@media (max-width: 991px) {
    .checkbox-group-wrapper[data-columns="4"] {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkbox-group-wrapper[data-columns="3"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: All to 1 column on mobile */
@media (max-width: 767px) {
    .checkbox-group-wrapper[data-columns="4"],
    .checkbox-group-wrapper[data-columns="3"],
    .checkbox-group-wrapper[data-columns="2"] {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   THANK YOU SECTION
   ======================================== */

.thank-you-section {
    background: linear-gradient(180deg, #d4e8f0 0%, #ffe8cc 100%);
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.thank-you-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(212, 232, 240, 0.8) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 232, 204, 0.8) 0%,
            transparent 60%
        );
    pointer-events: none;
    z-index: 0;
}

/* Plant/Sprout graphic on the right side */
.thank-you-section::after {
    content: "";
    position: absolute;
    top: 9%;
    right: 5%;
    width: 470px;
    height: 550px;
    background: url(/frontend/assets/home_page_images/tree-layer.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    opacity: 0.3;
}

.thank-you-section .container {
    position: relative;
    z-index: 1;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.thank-you-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thank-you-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0, 123, 154, 0.2));
}

.thank-you-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thank-you-message {
    font-size: 18px;
    color: #636363;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.form-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn-spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.btn-spinner svg {
    vertical-align: middle;
}

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

    to {
        transform: rotate(360deg);
    }
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* Responsive adjustments */
@media (max-width: 991px) {
    .thank-you-section {
        padding: 80px 0;
    }

    .thank-you-section::after {
        width: 200px;
        height: 300px;
        right: 2%;
        opacity: 0.2;
    }

    .thank-you-title {
        font-size: 40px;
    }

    .thank-you-message {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .thank-you-section {
        padding: 60px 0;
        min-height: 80vh;
    }

    .thank-you-section::after {
        width: 150px;
        height: 200px;
        opacity: 0.15;
    }

    .thank-you-icon svg {
        width: 60px;
        height: 60px;
    }

    .thank-you-title {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .thank-you-message {
        font-size: 15px;
    }

    .thank-you-content {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .thank-you-title {
        font-size: 28px;
    }

    .thank-you-message {
        font-size: 14px;
    }

    .thank-you-icon svg {
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   ENROLLMENT FORM STYLES
   ======================================== */

/* Enrollment Form Section */
.enrollment-form-section,
.enrollment-review-section {
    background: linear-gradient(180deg, #e8f4f8 0%, #fff4e6 100%);
    min-height: 100vh;
    padding: 10px 0 60px;
    position: relative;
}

.enrollment-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(232, 244, 248, 0.5) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 244, 230, 0.5) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 0;
}

.enrollment-form-section .container {
    position: relative;
    z-index: 1;
}

.enrollment-form-wrapper,
.enrollment-review-wrapper {
    max-width: 1340px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin-top: -7%;
}

.enrollment-form {
    padding: 0px;
    padding-left: 0;
    max-width: unset;
}

/* Progress Bar */
.enrollment-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: -40px;
    margin-bottom: 30px;
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 34px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 10;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* flex: 1; */
    position: relative;
    justify-content: flex-start;
}

.step-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.step-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #f6f8fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    
}

.progress-step.active .step-circle {
    background: #007b9a;
    color: #ffffff;
}

.progress-step.current .step-circle {
    background: #007b9a;
    color: #ffffff;
}

.step-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #007b9a;
}

.progress-step.active .step-number,
.progress-step.current .step-number {
    color: #ffffff;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #999999;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding-left: 10px;
}

.progress-step.active .step-label,
.progress-step.current .step-label {
    color: #000;
    font-weight: 700;
}

/* Step Indicator - Small bar aligned center with title */
.step-indicator {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 40px;
}

.indicator-bar {
    width: 60px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Indicator for completed steps - fully blue */
.indicator-bar.completed {
    background: #007b9a;
    width: 80px;
}

/* Indicator for current step - half gray, half blue */
.indicator-bar.current {
    background: linear-gradient(to right, #007b9a 50%, #e0e0e0 50%);
    width: 70px;
}

/* Indicator for pending steps - fully gray */
.indicator-bar.pending {
    background: #e0e0e0;
    width: 60px;
}

/* Welcome Message */
.enrollment-welcome {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
    margin-top: 20px;
}

.enrollment-welcome p {
    margin: 0;
    color: #333333;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.6;
    margin-top: 60px;
    display: block;
}

/* Divider Line between Welcome and PRIMARY ACCOUNT PERSON */
.enrollment-section-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 30px 0;
    width: 100%;
}

/* Instructions */
.enrollment-instructions {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.enrollment-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.enrollment-instructions li {
    margin-bottom: 10px;
    color: #333;
}

.enrollment-instructions ul {
    margin-top: 5px;
    padding-left: 0;
}

/* Enrollment Section */
.enrollment-section {
    margin-bottom: 30px;
    /* padding-bottom: 30px; */
}

#enrollment-form-address .section-header, #enrollment-form-phone .section-header{
    margin-bottom: 30px;
}

.enrollment-section:last-child {
    border-bottom: none;
}

.section-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.section-icon {
    font-size: 1.2rem;
    color: #333333;
}

.section-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 10px;
}

/* Enrollment Icons - Stroke Style (for icons that don't have far version) */
.enrollment-section .section-icon.fas,
.enrollment-form .section-icon.fas {
    font-weight: 300;
}

/* FontAwesome Regular icons (far) already have stroke style */
.enrollment-section .section-icon.far,
.enrollment-form .section-icon.far {
    font-weight: 400;
}

.section-title-inner {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.section-required-note {
    text-align: right;
    font-size: 0.85rem;
    color: #dc3545;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.required-asterisk {
    color: #dc3545;
    font-weight: 700;
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-input,
.form-select {
    padding: 10px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    background: #ffffff;
    color: #333333;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #1a5f7a;
    box-shadow: 0 0 0 2px rgba(26, 95, 122, 0.1);
}

.form-input::placeholder {
    color: #999999;
}

/* Phone Field Error States */
.form-input.phone-area-code.error,
.form-input.phone-number.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.form-input.phone-area-code.error:focus,
.form-input.phone-number.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Profile Picture */
.profile-picture-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-picture-container {
    position: relative;
}

.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-first-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}

.profile-last-name {
    font-size: 0.95rem;
    color: #666666;
    font-weight: 400;
}

.btn-change-image {
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: auto;
}

.btn-change-image:hover {
    background: #155a75;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Phone Fields */
.phone-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
    margin-bottom: 15px;
}

.btn-remove-phone {
    background: #dc3545;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-remove-phone:hover {
    background: #c82333;
    transform: scale(1.1);
}

.btn-add-phone-icon {
    background: #ed9b04;
    color: #ffffff;
    border: none;
    padding: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(237, 155, 4, 0.3);
}

.btn-add-phone-icon:hover {
    background: #d68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-add-phone-text {
    background: transparent;
    color: #333333;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 25px;
}

.btn-add-phone-text:hover {
    color: #ed9b04;
    background: rgba(237, 155, 4, 0.1);
}

.btn-add-phone-text .btn-add-phone-icon {
    margin: 0;
    width: 32px;
    height: 32px;
    padding: 8px;
    font-size: 0.9rem;
}

.btn-add-child,
.btn-add-contact {
    background: #ed9b04;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 0;
    box-shadow: 0 2px 8px rgba(237, 155, 4, 0.3);
}

.btn-add-child:hover,
.btn-add-contact:hover {
    background: #d68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Toggle Switch */
.toggle-switch-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toggle-switch-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.toggle-switch {
    position: relative;
    width: 80px;
    height: 36px;
}

.toggle-input {
    display: none;
}

.toggle-label {
    display: block;
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    transition: all 0.3s ease;
}

.toggle-text-yes,
.toggle-text-no {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.toggle-text-yes {
    opacity: 0;
}

.toggle-text-no {
    opacity: 1;
}

.toggle-label::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 30px;
    height: 30px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-label {
    background: #1a5f7a;
}

.toggle-input:checked + .toggle-label::after {
    transform: translateX(44px);
}

.toggle-input:checked + .toggle-label .toggle-text-yes {
    opacity: 1;
}

.toggle-input:checked + .toggle-label .toggle-text-no {
    opacity: 0;
}

.toggle-group {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

/* Relationship Section */
.relationship-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 30px;
}

.contact-profile-display {
    flex-shrink: 0;
}

.relationship-fields {
    /* flex: 1; */
    display: flex;
    gap: 40px;
    flex-direction: row;
    width: 100%;
    justify-content: end;
    align-items: baseline;
}

/* Action Buttons */
.enrollment-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    justify-content: space-between;
}

/* Action Buttons Row Wrapper (for Step 1 - keeps buttons in same row) */
.enrollment-actions-row-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.enrollment-actions-row-wrapper .phone-actions-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
}

.enrollment-actions-row-wrapper .enrollment-actions {
    margin: 0;
    padding: 0;
    border-top: none;
    justify-content: flex-start;
    display: flex;
    gap: 15px;
    flex: 1;
}

#enrollment-form-phone .form-grid {
    grid-template-columns: repeat(3, 1fr);
}

.btn-enrollment {
    padding: 16px 32px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-step2,
.btn-step3,
.btn-step4 {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-step2:hover,
.btn-step3:hover,
.btn-step4:hover {
    background: #155a75;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

.btn-review {
    background: #ed9b04;
    color: #ffffff;
}

.btn-review:hover {
    background: #d68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 155, 4, 0.3);
}

.btn-submit {
    background: #6daa44;
    color: #ffffff;
    width: 100%;
    position: relative;
}

.btn-submit:hover:not(:disabled) {
    background: #5d9438;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 170, 68, 0.3);
}

.btn-submit:disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-submit .btn-text {
    display: inline-block;
}

.btn-submit .btn-spinner {
    display: none;
    margin-left: 8px;
}

.btn-submit .btn-spinner i {
    animation: spin 1s linear infinite;
}

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

/* Enrollment Warning Message */
.enrollment-warning-message {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.enrollment-warning-message i {
    color: #ffc107;
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.enrollment-warning-message .warning-content {
    flex: 1;
}

.enrollment-warning-message strong {
    display: block;
    color: #856404;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.enrollment-warning-message p {
    color: #856404;
    margin-bottom: 12px;
    margin-top: 0;
}

.enrollment-warning-message .incomplete-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enrollment-warning-message .incomplete-steps-list li {
    margin-bottom: 8px;
}

.enrollment-warning-message .incomplete-steps-list li:last-child {
    margin-bottom: 0;
}

.enrollment-warning-message .incomplete-steps-list a {
    color: #1a5f7a;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.enrollment-warning-message .incomplete-steps-list a:hover {
    color: #ed9b04;
    text-decoration: underline;
}

.enrollment-warning-message .incomplete-steps-list a::before {
    content: "â†’";
    font-weight: bold;
}

/* Enrollment Message */
.enrollment-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: none;
}

.enrollment-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.enrollment-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.review-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.review-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-info-card {
    padding: 20px;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.location-info-item:last-child {
    margin-bottom: 0;
}

.location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ed9b04;
    margin-top: 5px;
    background-color: #fff;
    padding: 20px;
    border-radius: 32px;
}

.location-icon-image {
    width: 20px;
    height: 20px;
    display: block;
}

.location-icon-image--orange {
    filter: brightness(0) saturate(100%) invert(60%) sepia(86%) saturate(1208%) hue-rotate(2deg)
        brightness(104%) contrast(102%);
}

.location-info-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.location-label {
    font-size: 22px;
    font-weight: 700;
    color: #0a2239;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-value {
    font-size: 1.3rem;
    color: #000;
    font-weight: 600;
}

.review-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
}

.review-card {
    padding: 20px;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.review-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-edit-card {
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-edit-card:hover {
    background: #155a75;
    transform: scale(1.1);
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1a5f7a;
}

.review-profile-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.review-detail {
    font-size: 0.9rem;
    color: #666;
}

.review-relationship-badge {
    background: #1a5f7a;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

/* Thank You Section */
.thank-you-section {
    background: linear-gradient(180deg, #e8f4f8 0%, #fff4e6 100%);
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.thank-you-section::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100 20 L120 80 L180 80 L130 120 L150 180 L100 140 L50 180 L70 120 L20 80 L80 80 Z" fill="rgba(109,170,68,0.1)"/></svg>')
        no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.thank-you-content {
    max-width: unset;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-title {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.thank-you-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.thank-you-academy {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007b9a;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.thank-you-message {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thank-you-message p {
    margin-bottom: 15px;
}

.thank-you-contact {
    margin-top: 40px;
}

.thank-you-contact p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.thank-you-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thank-you-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ed9b04;
    border-radius: 50%;
}

.thank-you-phone-icon-image {
    width: 18px;
    height: 18px;
    display: block;
}

.thank-you-phone span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* Remove Buttons */
.btn-remove-child,
.btn-remove-contact {
    background: var(--button-bg);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-remove-child:hover,
.btn-remove-contact:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Primary Account Person - 5 fields with different sizes */
#enrollment-form-primary-account-person .form-grid,
.contact-info-section .form-grid {
    grid-template-columns: 2.5fr 0.8fr 2.5fr 1.5fr 2fr;
    gap: 20px;
}

/* M.I. field - smaller width */
#enrollment-form-primary-account-person .form-field:nth-child(2) {
    min-width: 60px;
}

/* First Name and Last Name - larger width */
#enrollment-form-primary-account-person .form-field:nth-child(1),
#enrollment-form-primary-account-person .form-field:nth-child(3) {
    min-width: 120px;
}

/* Gender - medium width */
#enrollment-form-primary-account-person .form-field:nth-child(4) {
    min-width: 100px;
}

/* Date Of Birth - medium width */
#enrollment-form-primary-account-person .form-field:nth-child(5) {
    min-width: 140px;
}

/* Address Section Grid Layout */
#enrollment-form-address .address-row-1 {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
}

#enrollment-form-address .address-row-2 {
    grid-template-columns: 1.5fr 1.5fr 1fr 0.7fr 0.7fr;
    align-items: end;
    gap: 20px 20px;
    column-gap: 20px;
}

/* Reduce gap between checkboxes in address row 2 - make them closer */
#enrollment-form-address .address-row-2 .form-field:nth-child(4) {
    padding-right: 5px;
}

#enrollment-form-address .address-row-2 .form-field:nth-child(5) {
    padding-left: 5px;
}

.relationship-section {
    margin-top: 50px;
}

.contact-field-group {
    margin-bottom: 30px;
}

.enrollment-review-wrapper .vt-location-viewer {
    border-color: #fff;
    border-width: 3px;
}

.enrollment-review-wrapper .vt-location-viewer .location-map-iframe {
    height: 500px;
}

select#salaryCents {
    padding: 14px 34px 13px 15px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .review-content {
        grid-template-columns: 1fr;
    }

    .enrollment-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .enrollment-header-title {
        font-size: 2rem;
    }

    .enrollment-form-wrapper {
        padding: 20px;
    }

    .enrollment-progress-bar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step-circle {
        width: 40px;
        height: 60px;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-field-row {
        grid-template-columns: 1fr;
    }

    .btn-remove-phone {
        width: 100%;
        border-radius: 6px;
    }

    .enrollment-actions {
        flex-direction: column;
    }

    .enrollment-actions-row-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .enrollment-actions-row-wrapper .btn-add-phone-text,
    .enrollment-actions-row-wrapper .btn-enrollment {
        width: 100%;
    }

    .enrollment-actions-row-wrapper .phone-actions-wrapper {
        width: 100%;
        justify-content: flex-start;
    }

    .enrollment-warning-message {
        flex-direction: column;
        padding: 15px;
    }

    .enrollment-warning-message i {
        font-size: 1.2rem;
    }

    .enrollment-warning-message strong {
        font-size: 1rem;
    }

    .enrollment-warning-message p {
        font-size: 0.9rem;
    }

    .relationship-content {
        flex-direction: column;
    }

    .toggle-group {
        flex-direction: column;
        gap: 15px;
    }

    .thank-you-title {
        font-size: 2.5rem;
    }

    .thank-you-subtitle {
        font-size: 1.5rem;
    }

    .thank-you-academy {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .enrollment-header-title {
        font-size: 1.5rem;
    }

    .section-title-inner {
        font-size: 1.7rem !important;
    }

    .profile-picture {
        width: 70px;
        height: 70px;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-subtitle {
        font-size: 1.2rem;
    }

    .thank-you-academy {
        font-size: 1.5rem;
    }

    .section-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-required-note {
        text-align: left;
        width: 100%;
    }

    #enrollment-form-primary-account-person .form-grid,
    .contact-info-section .form-grid {
        display: block;
        grid-template-columns: 1fr;
    }
    
    /* Reset min-widths on mobile */
    #enrollment-form-primary-account-person .form-field:nth-child(1),
    #enrollment-form-primary-account-person .form-field:nth-child(2),
    #enrollment-form-primary-account-person .form-field:nth-child(3),
    #enrollment-form-primary-account-person .form-field:nth-child(4),
    #enrollment-form-primary-account-person .form-field:nth-child(5) {
        min-width: auto;
    }

    #enrollment-form-primary-account-person .form-grid .form-field label,
    .contact-info-section .form-grid .form-field label {
        margin-bottom: 10px;
        margin-top: 20px;
    }

    #enrollment-form-address .address-row-1 {
        display: block;
    }

    #enrollment-form-address .address-row-2 {
        display: block;
    }

    #enrollment-form-address .address-row-1 label,
    #enrollment-form-address .address-row-2 label {
        margin: 10px 0;
    }

    #enrollment-form-phone .form-grid {
        display: block;
    }

    .enrollment-progress-bar {
        padding: 20px 10px 0;
        display: block;
    }

    .progress-step {
        margin-bottom: 20px;
    }

    .step-content {
        margin-bottom: 10px;
    }

    .step-indicator {
        margin-top: 5px;
        margin-left: 0;
        justify-content: right;
    }

    .indicator-bar {
        width: 50px !important;
    }

    .indicator-bar.completed {
        width: 70px !important;
    }

    .indicator-bar.current {
        width: 60px !important;
    }

    .btn-remove-phone {
        margin-top: 20px;
    }
    .relationship-fields {
        display: block;
    }

    .form-field label {
        font-size: 18px;
    }
    
    .site_form .calendar-card .flatpickr-calendar {
        display: contents !important;
    }
}

/* ========================================
   SALARY FIELDS WRAPPER (8/4 RATIO IN 6 COL GRID)
   ======================================== */
.site_form .salary-fields-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    align-items: end;
}

.site_form .salary-dollars-field {
    grid-column: span 4;
    width: 100%;
}

.site_form .salary-cents-field {
    grid-column: span 2;
    width: 100%;
}

@media (max-width: 767px) {
    .site_form .salary-fields-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .site_form .salary-dollars-field,
    .site_form .salary-cents-field {
        grid-column: span 1;
    }
}

/* ========================================
   ENROLL PAGE — "Send us a message" (gradient section)
   ======================================== */

.enroll-contact-section .enroll-contact-form-block {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 0 var(--space-xl, 2rem);
}

.enroll-contact-form-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 var(--space-xl, 2rem);
    line-height: 1.15;
}

.enroll-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.enroll-contact-form-alert {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.enroll-contact-form-alert--success {
    background: rgba(255, 255, 255, 0.95);
    color: #0a2239;
}

.enroll-contact-form-alert--error {
    background: rgba(220, 53, 69, 0.95);
    color: #fff;
}

.enroll-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

@media (max-width: 767.98px) {
    .enroll-contact-form-row {
        grid-template-columns: 1fr;
    }
}

.enroll-contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.enroll-contact-label {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.enroll-contact-locations {
    border: 0;
    padding: 0;
    margin: 30px 0px;
}

.enroll-contact-locations-legend {
    padding: 0;
    float: none;
    width: 100%;
}

.enroll-contact-locations-hint {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.875rem;
    margin: 0 0 0.65rem;
}

.enroll-contact-location-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    align-items: center;
    justify-content: space-between;
}

.enroll-contact-location-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    user-select: none;
}

.enroll-contact-location-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.enroll-contact-location-box {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    /* border: 2px solid rgba(255, 255, 255, 0.85); */
    background: #659625;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.enroll-contact-location-input:checked + .enroll-contact-location-box {
    background: #fff;
    border-color: #fff;
}

.enroll-contact-location-input:checked + .enroll-contact-location-box::after {
    content: "";
    width: 6px;
    height: 10px;
    border: solid #0a2239;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.enroll-contact-location-input:focus-visible + .enroll-contact-location-box {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.enroll-contact-input,
.enroll-contact-textarea {
    width: 100%;
    border: none;
    border-radius: 30px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    color: #0a2239;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.enroll-contact-input::placeholder,
.enroll-contact-textarea::placeholder {
    color: #6c757d;
}

.enroll-contact-textarea-wrap {
    position: relative;
}

.enroll-contact-textarea-icon {
    position: absolute;
    left: 1rem;
    top: 0.95rem;
    color: #6c757d;
    font-size: 0.95rem;
    pointer-events: none;
}

.enroll-contact-textarea {
    padding-left: 2.5rem;
    min-height: 140px;
    resize: vertical;
}

.enroll-contact-submit {
    width: 100%;
    border: none;
    border-radius: 30px;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
    background: #0a2239;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: 0.25rem;
}

.enroll-contact-submit:hover:not(:disabled) {
    background: #061525;
}

.enroll-contact-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

div#enroll-contact-tag-heading {
    margin-bottom: 30px;
}
