        :root {
            --primary: #f7941d;
            --primary-dark: #e07d0a;
            --text-primary: #1a1a1a;
            --text-secondary: #666;
            --text-muted: #999;
            --border: #e0e0e0;
            --bg-light: #f8f9fa;
            --error: #dc3545;
            --success: #28a745;
            --white: #ffffff;
        }


        .sample-form-container {
            max-width: 600px;
            margin: 40px auto;
            padding: 32px 24px;
            background: var(--color-off-white);
            border-radius: 12px;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h1 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-header p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: grid;
            gap: 16px;
        }

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

        @media (max-width: 600px) {
            .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
        }

        .form-label {
            display: block;
            font-weight: 500;
            margin-bottom: 6px;
            font-size: 14px;
        }

        .form-label .required {
            color: var(--error);
        }

        .form-input {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        select.form-input {
            height: 48px;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
        }

        .form-input.error {
            border-color: var(--error);
        }

        .form-hint {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .form-error {
            font-size: 12px;
            color: var(--error);
            margin-top: 4px;
            display: none;
        }

        .form-error.visible {
            display: block;
        }

        /* Phone input styling */
        .phone-inputs {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .phone-inputs .form-input {
            text-align: center;
        }

        .phone-inputs .phone-sep {
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Segmented control styling */
        .segment-control {
            display: flex;
            background: #f0f0f0;
            border-radius: 10px;
            padding: 4px;
            gap: 4px;
        }

        .segment-btn {
            flex: 1;
            padding: 10px 16px;
            border: none;
            background: transparent;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .segment-btn:hover:not(.active) {
            background: rgba(255, 255, 255, 0.5);
        }

        .segment-btn.active {
            background: white;
            color: var(--primary);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .segment-btn .segment-icon {
            font-size: 16px;
        }

        .form-hint {
            display: block;
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        /* Address autocomplete */
        .address-autocomplete-wrapper {
            position: relative;
        }

        .smarty-autocomplete-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
            max-height: 280px;
            overflow-y: auto;
            z-index: 9999;
            margin-top: 4px;
        }

        .smarty-autocomplete-item {
            padding: 12px 16px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
            font-size: 14px;
            color: var(--text-primary);
            transition: background-color 0.15s ease;
        }

        .smarty-autocomplete-item:hover,
        .smarty-autocomplete-item.highlighted {
            background-color: #fff5eb;
        }

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

        /* Submit button */
        .btn-submit {
            width: 100%;
            padding: 16px 24px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-family: inherit;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 8px;
        }

        .btn-submit:hover {
            background: var(--primary-dark);
        }

        .btn-submit:active {
            transform: scale(0.98);
        }

        .btn-submit:disabled,
        .btn-submit.btn-disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Success state */
        .success-message {
            display: none;
            text-align: center;
            padding: 48px 24px;
        }

        .success-message.visible {
            display: block;
        }

        .success-icon {
            width: 64px;
            height: 64px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .success-icon svg {
            width: 32px;
            height: 32px;
            color: white;
        }

        .success-message h2 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .success-message p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        /* Form hidden when success */
        .form-content.hidden {
            display: none;
        }

        /* Loading spinner */
        .spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin-right: 8px;
            vertical-align: middle;
        }

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

        /* General error message */
        .form-alert {
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 14px;
            display: none;
        }

        .form-alert.error {
            background: #fef2f2;
            border: 1px solid #fecaca;
            color: var(--error);
        }

        .form-alert.visible {
            display: block;
        }

        /* Issue Report Footer */
        .issue-report-footer {
            text-align: center;
            padding-top: 24px;
            margin-top: 16px;
        }

        .issue-report-link {
            font-size: 13px;
            color: var(--primary);
            text-decoration: none;
            transition: opacity 0.15s;
        }

        .issue-report-link:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
