/* =============================================
   FORM CONTAINER
   ============================================= */
.form-container {
    padding: 40px;
}

.form-content {
    display: block;
}

.form-content.hidden {
    display: none;
}

.form-header {
    margin-bottom: 32px;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    margin-bottom: 12px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.form-description {
    color: #64748b;
    margin-top: 4px;
    text-align: justify;
}
.form-description a{
    text-decoration: none;
    color: #ef4444;
}
#form-referral h3{
    padding-bottom: 5px;
    text-align: center;
    color: #da8d00;
}
#form-referral hr{
    width: 80%;
    margin: auto;
    margin-bottom: 25px;
    color: #da8d00;
}
/* =============================================
   FORM FIELDS
   ============================================= */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 14px;
}

#form-inquiry .form-input:focus {
    border-color: #0074B7;
    box-shadow: 0 0 0 3px rgba(0, 116, 183, 0.1);
    outline: none;
}
#form-referral .form-input:focus {
    border-color: rgb(249, 115, 22);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    outline: none;
}
#form-feedback .form-input:focus {
    border-color: rgb(80, 16, 36);
    box-shadow: 0 0 0 3px rgba(80, 16, 36, 0.1);
    outline: none;
}
#form-services .form-input:focus {
    border-color: rgb(139, 92, 246);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    outline: none;
}

.form-select {
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px;
    appearance: none;
}

.form-textarea {
    width: 100%;
    min-height: 128px;
    padding: 16px;
    resize: vertical;
}

/* =============================================
   FILE UPLOAD
   ============================================= */
.file-upload-area {
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s;
    cursor: pointer;
    position: relative;
}

#form-feedback .file-upload-area:hover {
    border-color: #501024;
}

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    width: 40px;
    height: 40px;
    color: #cbd5e1;
    margin: 0 auto 8px;
}

.upload-text {
    color: #64748b;
    font-size: 14px;
}

/* =============================================
   CHECKBOXES
   ============================================= */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-input {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    cursor: pointer;
}

#form-services .checkbox-input{
    accent-color: #8b5cf6;
}
#form-services .checkbox-item:hover{
    border-color: #8b5cf6;
}
#form-services .checkbox-item.selected {
    border-color: #8b5cf6;
    background: #f5f3ff;
}
#form-referral .checkbox-input{
    accent-color: rgb(249, 115, 22);
}
#form-referral .checkbox-item:hover{
    border-color: rgb(249, 115, 22);
}
#form-referral .checkbox-item.selected {
    border-color: rgb(249, 115, 22);
    background: #fffaf3;
}

.checkbox-label {
    font-size: 14px;
    color: #334155;
}

/* =============================================
   SUBMIT BUTTON
   ============================================= */
.submit-button {
    width: 100%;
    height: 56px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.submit-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.button-icon {
    width: 20px;
    height: 20px;
}