/* =================================================================
   MINIMAL STYLES - Clean slate for new design
   ================================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #f5f5f5;
    color: #333;
    min-height: 100vh;
    padding: 2rem;
}

/* Open Form Button */
.open-form-btn {
    padding: 1rem 2rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.open-form-btn:hover {
    background: #0056b3;
}

/* Form Modal */
.form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.form-modal.active {
    display: flex;
}

.form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.form-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.form-close:hover {
    color: #000;
}

/* Form Header */
.form-header {
    margin-bottom: 2rem;
}

.form-main-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-intro-text {
    color: #666;
    font-size: 0.9rem;
}

/* Progress Dots */
.progress-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s;
}

.dot.active {
    background: #007bff;
}

/* Form Steps */
.form-step {
    display: none;
}

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

.step-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Form Inputs */
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #007bff;
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Form Buttons */
.form-step-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-step-buttons.single {
    justify-content: center;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-next,
.btn-submit {
    background: #007bff;
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    background: #0056b3;
}

.btn-prev {
    background: #f0f0f0;
    color: #333;
}

.btn-prev:hover {
    background: #e0e0e0;
}

.form-note-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Thank You Screen */
.thank-you {
    text-align: center;
}

.thank-you-content {
    padding: 2rem 0;
}

.success-checkmark {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.thank-you-text {
    margin: 1rem 0;
    color: #666;
}

.thank-you-signature {
    margin-top: 1.5rem;
    font-style: italic;
    color: #999;
}

.btn-close-final {
    padding: 0.75rem 2rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 2rem;
}

.btn-close-final:hover {
    background: #0056b3;
}
