:root {
    --primary: #1D8C89;
    --primary-foreground: #ffffff;
    --background: #ffffff;
    --foreground: #1f2937;
    --muted-foreground: #6b7280;
    --accent: #f0f9ff;
    --muted: #f8fafc;
    --border: #e5e7eb;
    --green-100: #dcfce7;
    --green-700: #15803d;
    --blue-100: #dbeafe;
    --blue-700: #1d4ed8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.max-w-4xl {
    max-width: 56rem;
}

section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--muted) 100%);
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.text-4xl {
    font-size: 2.25rem;
    font-weight: 700;
}

.text-2xl {
    font-size: 1.5rem;
    font-weight: 600;
}

.text-lg {
    font-size: 1.125rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.gap-2 {
    gap: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.bg-primary {
    background-color: var(--primary);
}

.text-primary-foreground {
    color: var(--primary-foreground);
}

.rounded-full {
    border-radius: 9999px;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.bg-background {
    background-color: var(--background);
}

.rounded-2xl {
    border-radius: 1rem;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.p-8 {
    padding: 2rem;
}

@media (min-width: 768px) {
    .md\:p-12 {
        padding: 3rem;
    }
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.h-2 {
    height: 0.5rem;
}

.bg-muted {
    background-color: var(--muted);
}

.overflow-hidden {
    overflow: hidden;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.grid {
    display: grid;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.cursor-pointer {
    cursor: pointer;
}

.border-2 {
    border-width: 2px;
}

.border {
    border-width: 1px;
}

.border-muted {
    border-color: var(--border);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.hover-border-primary:hover {
    border-color: var(--primary);
}

.transition-colors {
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.has-checked-border-primary:has(:checked) {
    border-color: var(--primary);
}

.has-checked-bg-accent:has(:checked) {
    background-color: var(--accent);
}

.items-start {
    align-items: flex-start;
}

.flex-1 {
    flex: 1;
}

.mt-1 {
    margin-top: 0.25rem;
}

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

.justify-center {
    justify-content: center;
}

.p-6 {
    padding: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.text-5xl {
    font-size: 3rem;
    font-weight: 700;
}

.text-6xl {
    font-size: 3.75rem;
    font-weight: 700;
}

.w-full {
    width: 100%;
}

.bg-green-100 {
    background-color: var(--green-100);
}

.text-green-700 {
    color: var(--green-700);
}

.from-primary-10 {
    background-image: linear-gradient(to bottom right, rgba(29, 140, 137, 0.1), var(--accent));
}

.to-accent {
    background-color: var(--accent);
}

.inline-block {
    display: inline-block;
}

.mt-4 {
    margin-top: 1rem;
}

/* Button Styles */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.button-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.button-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.button-primary:hover:not(:disabled) {
    background-color: rgba(29, 140, 137, 0.9);
}

.button-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.button-outline:hover:not(:disabled) {
    background-color: rgba(29, 140, 137, 0.1);
}

.ml-2 {
    margin-left: 0.5rem;
}

/* Input Styles */
.input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.input:focus {
    outline: none;
    border-color: var(--primary);
}

.input::placeholder {
    color: var(--muted-foreground);
}

/* Animation */
.progress-bar {
    transition: width 0.3s ease;
}

.step-transition {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.step-hidden {
    opacity: 0;
    transform: translateX(20px);
    display: none;
}

.step-visible {
    opacity: 1;
    transform: translateX(0);
    display: block;
}

/* New Styles for Simplified Form */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1rem;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--muted);
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary);
    color: white;
}

.step.completed .step-number {
    background: var(--green-100);
    color: var(--green-700);
}

.step-label {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.option-card {
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.option-card:hover {
    border-color: var(--primary);
}

.option-card.selected {
    border-color: var(--primary);
    background-color: rgba(29, 140, 137, 0.05);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.option-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.option-description {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.discount-badge {
    background: var(--green-100);
    color: var(--green-700);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    font-weight: 600;
}

.additional-options {
    margin-top: 2rem;
}

.toggle-section {
    margin-bottom: 1rem;
}

.toggle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--muted);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-header:hover {
    background: var(--border);
}

.toggle-title {
    font-weight: 600;
}

.toggle-icon {
    transition: all 0.3s ease;
}

.toggle-content {
    padding: 1rem;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    display: none;
}

.toggle-content.active {
    display: block;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-option:hover {
    border-color: var(--primary);
}

.checkbox-option.selected {
    border-color: var(--primary);
    background-color: rgba(29, 140, 137, 0.05);
}

.checkbox-option input {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--muted-foreground);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkbox-option.selected .custom-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}

.custom-checkbox::after {
    content: "✓";
    color: white;
    font-size: 14px;
    display: none;
}

.checkbox-option.selected .custom-checkbox::after {
    display: block;
}

.summary-box {
    background: var(--muted);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-title {
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.summary-list {
    list-style: none;
}

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.summary-item:last-child {
    border-bottom: none;
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--green-700);
    margin-bottom: 1.5rem;
}

.success-message h2 {
    margin-bottom: 1rem;
    color: var(--green-700);
}

.confirmation-details {
    background: var(--blue-100);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.confirmation-details h3 {
    color: var(--blue-700);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(29, 78, 216, 0.1);
}

.confirmation-item:last-child {
    border-bottom: none;
}

.confirmation-label {
    font-weight: 600;
    color: var(--foreground);
}

.confirmation-value {
    color: var(--muted-foreground);
}

.next-steps {
    background: var(--green-100);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.next-steps h3 {
    color: var(--green-700);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.next-steps-list {
    list-style: none;
    text-align: left;
}

.next-steps-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.next-steps-list li i {
    color: var(--green-700);
    margin-top: 0.25rem;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

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

.error-message {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
}

@media (max-width: 768px) {
    .grid-cols-3, .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .step-indicator {
        flex-direction: column;
        gap: 1rem;
    }

    .confirmation-item {
        flex-direction: column;
        gap: 0.25rem;
    }
}